Problem setup and design requirements
Force analysis and system equations
Matlab representation and the open-loop response
The cart with an inverted pendulum, shown below, is "bumped" with an impulse force, F. Determine the dynamic equations of motion for the system, and linearize about the pendulum's angle, theta = Pi (in other words, assume that pendulum does not move more than a few degrees away from the vertical, chosen to be at an angle of Pi). Find a controller to satisfy all of the design requirements given below.
For this example, let's assume that
M | mass of the cart | 0.5 kg |
m | mass of the pendulum | 0.5 kg |
b | friction of the cart | 0.1 N/m/sec |
l | length to pendulum center of mass | 0.3 m |
I | inertia of the pendulum | 0.006 kg*m^2 |
F | force applied to the cart | |
x | cart position coordinate | |
theta | pendulum angle from vertical | |
For the PID, root locus, and frequency response sections of this problem we will be only interested in the control of the pendulums position. This is because the techniques used in these tutorials can only be applied for a single-input-single-output (SISO) system. Therefore, none of the design criteria deal with the cart's position. For these sections we will assume that the system starts at equilibrium, and experiences an impulse force of 1N. The pendulum should return to its upright position within 5 seconds, and never move more than 0.05 radians away from the vertical.
The design requirements for this system are:
The design requirements for the Inverted Pendulum state-space example are:
Below are the two Free Body Diagrams of the system.
Summing the forces in the Free Body Diagram of the cart in the horizontal direction, you get the following equation of motion:
Note that you could also sum the forces in the vertical direction, but no useful information would be gained.
Summing the forces in the Free Body Diagram of the pendulum in the horizontal direction, you can get an equation for N:
If you substitute this equation into the first equation, you get the first equation of motion for this system:
To get the second equation of motion, sum the forces perpendicular to the pendulum. Solving the system along this axis ends up saving you a lot of algebra. You should get the following equation:
To get rid of the P and N terms in the equation above, sum the moments around the centroid of the pendulum to get the following equation:
Combining these last two equations, you get the second dynamic equation:
Since Matlab can only work with linear functions, this set of equations should be linearized about theta = Pi. Assume that theta = Pi + ø (ø represents a small angle from the vertical upward direction). Therefore, cos(theta) = -1, sin(theta) = -ø, and (d(theta)/dt)^2 = 0. After linearization the two equations of motion become (where u represents the input):
Since we will be looking at the angle Phi as the output of interest, solve the first equation for X(s),
The C matrix is 2 by 4, because both the cart's position and the pendulum's position are part of the output. For the state-space design problem we will be controlling a multi-output system so we will be observing the cart's position from the first row of output and the pendulum's with the second row.
You should get the following velocity response plot:
As you can see from the plot, the response is entirely unsatisfactory. It is not stable in open loop. You can change the axis to see more of the response if you need to convince yourself that the system is unstable.
The blue line represents the cart's position and the green line represents the pendulum's angle. It is obvious from this plot and the one above that some sort of control will have to be designed to improve the dynamics of the system. Four example controllers are included with these tutorials: PID, root locus, frequency response, and state space. Select from below the one you would like to use.
Note: The solutions shown in the PID, root locus and frequency response examples may not yield a workable controller for the inverted pendulum problem. As stated previously, when we put this problem into the single-input, single-output framework, we ignored the x position of the cart. The pendulum can be stabilized in an inverted position if the x position is constant or if the cart moves at a constant velocity (no acceleration). Where possible in these examples, we will show what happens to the cart's position when our controller is implemented on the system. We emphasize that the purpose of these examples is to demonstrate design and analysis techniques using Matlab; not to actually control an inverted pendulum.
Tutorials