Introduction
I gracefully struggled through this simulation in a controls course that ended up being one of my favorite classes in college. Controls theory and the physical possibilities we are able to achieve are fascinating. I want to give a quick shout out to the following public resource which was the main material we studied in that class, and where a lot of my code comes from. The github repo can be found here. I also want to shout out my professor Dr. Killpack who did a phenomenal job instilling a continous curiosity in engineering and especially in controls.
Throughout this post I will assume you have some knowledge with Euler-Lagrange Equations, Python, Linear Algebra and ODE's.
First Steps
When we use Euler-Lagrange to determine the equations of motion for a given system, we have to start off by defining our generalized coordinates (degrees of freedom) and the number of bodies in our system. Here's a quick little svg of how I'm defining all the coordinates:
The system has two degrees of freedom, one for the angle of the bar and another for the horizontal position of the cart, so I'll define our generalized coordinates as such: and
There are two bodies, so we'll have 2 equations of motion.
Deriving the Lagrangian
Let's kick things off by writing the position vectors to the center of mass of each body. Modeling the pendulum as a slender arm (1) and the cart as a solid body (2) we get:
Take the derivative of both to get:
Cool, now there's a couple more things we need before writing down the total kinetic energy. Notice that the slender arm will also have an angular velocity defined by: , and an inertia matrix of:
Kinetic Energy:
Now we can get the total kinetic energy, which, in our case, is defined by the following:
Click the dropdown below if you want to see some good old plugging and chugging. Otherwise, feel free to trust my algebra skills and skip ahead.
In the end, we get the following:
Potential Energy:
Defining the initial potential energy at the center of the cart, our total potential energy is given by the gravitational potential energy of the center of mass of the slender rod, which is:
Now we can write out the Lagrangian :
Deriving the Euler-Lagrange Equation
See the little subscript in the Euler-Lagrange equation? That represents the number of generalized coordinates, and since we have two ( and ) we're going to apply this equation twice.
Once again, there's going to be lots of plugging and chugging, so click the dropdowns below if you want to see that happen. Otherwise, you can trust my partial derivative skills and skip ahead for the final result.
Work in progress
I'm still working on this section. Check back soon for updates!