Assignment 5 - Lagrange#

Note

Submit your assignment as a single PDF, including plots and source code (if any). We expect academic honesty. Collaboration is encouraged, but must be declared. Any use of AI must be declared along with any other sources used. This is not an exam. Do your best and show that you put in effort and the assignment will be approved.

In this assignment we will study the modeling of complex mechanical systems based on the Lagrange approach.

Problem 1 - Ball on a Beam#

Note

This problem contains a programming exercise. Template code is available as a Jupyter notebook at TTK4130/code-handouts. The relevant notebook is assingment-5-ball-and-beam.ipynb.

renderer
pivot_action

We consider here a solid ball on a beam system as depicted in Fig. 14. The ball rolls without slipping (pure rotation) on a beam that is articulated without friction in the middle. A torque \(T\) acts on the beam joint. We will use the following numerical values: The rotational inertia of the rail around its joint is \(J = 1\ \text{kg} \cdot \text{m}^2\), the mass of the ball is \(M = 10\ \text{kg}\) and its radius is \(R = 0.25\ \text{m}\). The position of the ball with respect to the joint of the rail will be labeled by \(x\).

A rotation with \(\dot{\theta}>0\) obeys the right-hand rule for reference frames \(\mathbf{a}\) and \(\mathbf{b}\), while a displacement with \(\dot{x}>0\) moves the ball in the direction \(\mathbf{b}_1\) (see Fig. 14).

Here, we will use the generalized coordinates \(\mathbf{q} = [x,\,\theta]^T\).

../_images/BallOnBeam.svg

Fig. 14 Schematic of the ball on a beam.#

Tasks

  1. What is the position of the ball’s center as a function of the generalized coordinates?

  2. The total movement of the ball is the result of its movement with respect to the beam, in addition to the movement of the beam.

    What is then the angular velocity of the ball as a function of the generalized coordinates?

  3. The ball is a rigid body that both experiences translation and rotation.

    What is the expression for the kinetic energy of the ball?

  4. The beam is also a rigid body, but it only rotates.

    What is the expression for the kinetic energy of the beam?

  5. Complete the Jupyter notebook assingment-5-ball-and-beam.ipynb (found in the code handout repository) by doing the following tasks:

    • Define the generalized coordinates \(\mathbf{q} = [x,\,\theta]^T\) as a symbolic variable.

    • Define a symbolic variable for the derivative of the generalized coordinates.

    • Write the expression for the position of the ball’s center.

    • Complete the expressions for the kinetic and potential energies.

    • Write the expression for the Lagrangian function.

    • Run the routine.

    Add the implemented code to your answer.

    The Lagrange equations can be written in state-space form as given by

    (65)#\[\begin{split}\mathbf{x} = \begin{bmatrix} \mathbf{q} \\ \dot{\mathbf{q}} \end{bmatrix},\qquad \dot{\mathbf{x}} = \begin{bmatrix} \dot{\mathbf{q}} \\ \left(\frac{\partial^2 \mathcal{L}}{\partial \dot{\mathbf{q}}^2}\right)^{-1}\left(\mathbf{Q} + \frac{\partial \mathcal{L}}{\partial \mathbf{q}} - \frac{\partial^2 \mathcal{L}}{\partial \dot{\mathbf{q}} \partial \mathbf{q}} \dot{\mathbf{q}} \right) \end{bmatrix}.\end{split}\]

    The routine implemented in part (e) exports two Matlab functions. One that gives the position of the ball’s center, while the other returns the terms \(\frac{\partial^2 \mathcal{L}}{\partial \dot{\mathbf{q}}^2}\) and \(\mathbf{Q} + \frac{\partial \mathcal{L}}{\partial \mathbf{q}} - \frac{\partial^2 \mathcal{L}}{\partial \dot{\mathbf{q}} \partial \mathbf{q}} \dot{\mathbf{q}}\).

  6. Assume that the external torque \(T\) is given by the PD control law:

    (66)#\[T = 200 (x-\theta) + 70 (\dot{x} - \dot{\theta})\]

    Write a function that gives the dynamics of the state-space model (66) by using the get_W and get_RHS functions and the PD control law. In other words, this function should return the value of the right-hand side of (66) as a function of the states and the parameters.

  7. (Optional task) Complete the delivered Jupyter notebook in order to make an animation of the simulation results.

    Simulate your system using e.g. \(x(0) = 1,\, \theta(0) = 0\) as initial conditions with initial velocities at rest.

    Run the animation.

    What do you observe? Are these results reasonable? Explain.

    Hint: The function that returns the position of the ball’s center can come in handy here.

Problem 2 - Pendulum on a Vertical Oscillator#

In this problem, we will derive equations of motion for the same system analyzed in Assignment 4. Previously, we used the Newton-Euler approach; now, we will use the Lagrange method. Depending on your choice of generalized coordinates, you may obtain the same equations as in Assignment 4.

../_images/pendulum_osc.svg

Fig. 15 Pendulum on a vertical oscillator#

Figure above shows a pendulum with a point mass \(m_2\) attached to a mass \(m_1\) that can oscillate along a vertical axis. The pendulum rod has a length \(L\) and is considered massless (i.e., the pendulum can be modeled as a point mass at the end of a massless rod).

The oscillating mass is connected to a stationary structure via a spring with stiffness \(k\). The vertical position \(z\) of the mass is defined such that \(z_0\) corresponds to the neutral position of the spring. The angular displacement of the pendulum rod is \(\theta\), as indicated in the figure. For simplicity, body one is constrained to move only along the vertical axis, with no motion along the \(y_0\) or \(z_0\) directions.

Tasks

  1. Select a set of generalized coordinates that uniquely describe the configuration of the system. Ensure the number of coordinates corresponds to the degrees of freedom of the system.

  2. Find the kinetic energy of the system and express it in terms of the generalized coordinates and their time derivatives.

  3. Find the potential energy of the system and express it in terms of the generalized coordinates.

  4. Derive the equations of motion for the system using the Lagrange method.

Hints:

  • Express the coordinates of both masses in terms of the generalized coordinates before differentiating.

  • Consider the contributions to the kinetic and potential energy separately for each mass.

  • Apply the Euler-Lagrange equation to derive the equations of motion:

    (67)#\[\frac{d}{dt} \left( \frac{\partial T}{\partial \dot{q}_i} \right) - \frac{\partial T}{\partial q_i} + \frac{\partial V}{\partial q_i} = 0\]