Digital Control Example: Ball and Beam problem using PID Control

Digital PID controller
Discrete transfer function
Open-loop response
Proportional control
Proportional-Derivative control

In this digital control version of the ball and beam experiment, we are going to use the PID control method to design the digital controller. If you refer to the Ball and Beam Modeling page, the open-loop transfer function was derived as

m mass of the ball 0.11 kg
g gravitational acceleration 9.8 m/s^2
d lever arm offset 0.03 m
L length of the beam 1.0 m
R radius of the ball 0.015 m
J ball's moment of inertia 9.99e-6 kgm^2
R(s) ball position coordinate (m)
theta(s) servo gear angle 0.25 rad

The design criteria for this problem are:

Digital PID controller

If you refer to any of the PID control problem for continuous systems, the PID transfer function was expressed as

As you noticed the above transfer function was written in terms of s. For the digital PID control, we use the following transfer function in terms of z.

Discrete transfer function

The first thing to do here is to convert the above continuous system transfer function to an equivalent discrete transfer function. To do this, we will use the MATLAB function c2d. To use c2d, we need to specify three arguments: system, sampling time (Ts), and the 'method'. You should already be familiar with how to create a system from numerator and denominator matrices. The sampling time should be smaller than 1/(30*BW) sec, where BW is the closed-loop bandwidth frequency. The method we will use is the zero-order hold ('zoh'). Assuming that the closed-loop bandwidth frequency is around 1 rad/sec, let the sampling time be 1/50 sec/sample. Now we are ready to use c2d. Enter the following commands to an m-file.

Running this m-file in the MATLAB command window gives you the following matrices.

Open-loop response

Now we will observe the ball's response to a step input of 0.25 m. To do this, enter the following commands into a new m-file and run it in the command window. You should see the following response.

From this plot, it is clear that the open-loop system is unstable causing the ball to roll off the end of the beam.

Proportional Control

Now we will add proportional control (Kp) to the system and obtain the closed-loop system response. For now let Kp equal 100 and see what happens to the response. Enter the following commands into a new m-file and run it in the command window.

As you can see, the addition of proportional control does not make the system stable. You may try to increase the proportional gain (Kp) and confirm that the system remains unstable.

Proportional-Derivative control

Now we will add a derivative term to the controller. Keep the proportional gain (Kp) equal to 100, and let the derivative gain (Kd) equal to 10. Copy the following code to an new m-file and run it to view the system response.

Now the system is stable, but the rise time is too long. From the PID Tutorial page, we see that the increasing the proportional gain (Kp) will decrease the rise time. Let's increase the proportional gain (Kp) to 1000 and see what happens. Change Kp in the above m-file from 100 to 1000 and rerun it in the command window. You should see the following step response.

As you can see, all of the design requirements are satisfied. For this particular problem, no implementation of an integral control was needed. But remember there is more than one solution for a control problem. For practice, you may try different P, I and D combinations to obtain a satisfactory response.


Digital Control Examples
Cruise Control | Motor Speed | Motor Position | Bus Suspension | Inverted Pendulum | Pitch Controller | Ball and Beam

Ball & Beam Examples
Modeling | PID | Root Locus | Frequency Response | State Space | Digital Control | Simulink

Tutorials
MATLAB Basics | MATLAB Modeling | PID Control | Root Locus | Frequency Response | State Space | Digital Control | Simulink Basics | Simulink Modeling | Examples