Ball & Beam: PID Controller Design
Key MATLAB commands used in this tutorial are: tf , step , feedback
Contents
The open-loop transfer function of the plant for the ball and beam experiment is given below:
(1)
The design criteria for this problem are:
- Settling time less than 3 seconds
- Overshoot less than 5%
To see the derivation of the equations for this problem refer to the Ball & Beam: System Modeling page.
Closed-loop representation
The block diagram for this example with a controller and unity feedback of the ball's position is shown below:
First, we will study the response of the system shown above when a proportional controller is used. Then, derivative and/or integral control will be added if necessary.
Recall, that the transfer function for a PID controller is:
(2)
Proportional control
The closed-loop transfer function for proportional control with a proportional gain () equal to 100, can be modeled by copying the following lines of MATLAB code into a new m-file.
m = 0.111;
R = 0.015;
g = -9.8;
L = 1.0;
d = 0.03;
J = 9.99e-6;
s = tf('s');
P_ball = -m*g*d/L/(J/R^2+m)/s^2;
Kp = 1;
C = pid(Kp);
sys_cl=feedback(C*P_ball,1);
Now, we can model the system's response to a step input of 0.25 m. Add the following line of code to your m-file and run it. You should get the following output:
step(0.25*sys_cl) axis([0 70 0 0.5])
As you can see, the system remains marginally stable with the addition of a proportional gain. Try changing the value of and note that the system remains unstable.
Proportional-derivative control
Now, we will add a derivative term to the controller. Copy the following lines of code to an m-file and run it to view the system's response to this control method. Your plot should be similar to the following:
m = 0.111;
R = 0.015;
g = -9.8;
L = 1.0;
d = 0.03;
J = 9.99e-6;
s = tf('s');
P_ball = -m*g*d/L/(J/R^2+m)/s^2;
Kp = 10;
Kd = 10;
C = pid(Kp,0,Kd);
sys_cl=feedback(C*P_ball,1);
t=0:0.01:5;
step(0.25*sys_cl)
Now the system is stable but the overshoot is much too high and the settling time needs to go down a bit. From the PID tutorial page in the section on characteristics of P, I, and D controllers, we see that by increasing we can lower the overshoot and decrease the settling time slightly. Therefore, make = 20 in your m-file and run it again. Your output should be:
Kp = 10; Kd = 20; C = pid(Kp,0,Kd); sys_cl=feedback(C*P_ball,1); step(0.25*sys_cl)
The overshoot criterion is met but the settling time needs to come down a bit. To decrease the settling time we may try increasing the slightly to increase the rise time. The derivative gain () can also be increased to take off some of the overshoot that increasing will cause. After playing with the gains a bit, the following step response plot can be achieved with = 15 and = 40:
Kp = 15; Kd = 40; C = pid(Kp,0,Kd); sys_cl=feedback(C*P_ball,1); step(0.25*sys_cl)
As you can see from the above plot all the control objectives have been met without the use of an integral controller (settling time for this example is considered achieved when the response is less than 2% of its final value). Remember, that for a control problem there is usually more than one solution for the problem.