CMU
UM


Example:PID Design Method for the Bus Suspension System

Adding a PID controller
Plotting the closed-loop response
Choosing the gains for the PID controller

From the main problem, the dynamic equations in state-space form are the following:


and the system schematic looks like:

For the original problem setup and the derivation of the above equations and schematic, please refer to the bus modeling page.

We want to design a feedback controller so that when the road disturbance (W) is simulated by a unit step input, the output (X1-X2) has a settling time less than 5 seconds and an overshoot less than 5%. For example, when the bus runs onto a 10 cm high step, the bus body will oscillate within a range of +/- 5 mm and will stop oscillating within 5 seconds.

The system model can be represented in Matlab by creating a new m-file and entering the following commands (refer to main problem for the details of getting those commands).

Adding a PID controller

Recall that the transfer function for a PID controller is:

where KP is the proportional gain, KI is the integral gain, and KD is the derivative gain. Let's assume that we will need all three of these gains in our controller. To begin, we might start with a unity gain for each: KP=1, KI=1 and KD=1. This can be implemented into Matlab by adding the following code into your m-file:

Now let's simulate the response of the system (the distance X1-X2) to a step disturbance on the road. From the schematic above we can find the transfer function from the road disturbance W to the output(X1-X2):
This transfer function can be modeled in Matlab by adding the following code into your m-file: Note that the function "polyadd" is not a standard function in Matlab; you will need to copy it to a new m-file to use it. Click here for more information on defining new functions in Matlab.

Plotting the closed-loop response

Now we have created the closed-loop transfer function in Matlab that will represent the plant, the disturbance, as well as the controller. Let's see what the closed-loop step response for this system looks like before we begin the control process. Keep in mind that we are going to use a 0.1 m high step as our disturbance, to simulate this, all we need to do is to multiply numa by 0.1. Add the following code into your m-file:

you should see the response (X1-X2) to a step W like this:


Choosing the gains for the PID controller

Now that we have the closed-loop transfer function, controlling the system is simply a matter of changing the KP, KI, and KD variables. From the figure above, we can see that the system has a very small damping and the settling time is extremely long. This response doesn't satisfy the 5 seconds settling time requirement. As mentioned before, this can be rectified by adjusting the KP, KI and KD variables to find better response. Let's increase KD to 100 to see what will happen. Go back to your m-file and change KD to 100 then rerun the program, you should get the following plot:

Now we see that the overshoot is a little smaller but the bus body still oscillates (the oscillation will die out after about 150 seconds).

For this problem, it turns out that the PID design method does not adequately control the system. This can been seen by looking at the root locus. When the root locus is plotted, we can see that large poles in left half plane will be needed to pull the asymptotes to the left. Such a task can hardly be achieved by simply changing the gains of a PID controller. Feel free to play around with all three of the parameters, but you will most likely get either unstable or marginally stable responses. But if you do find a good PID design, please email us with your results! We are always interested in different ways to solve our examples; we may include your solution in a future version of these tutorials.


User Survey
Your anonymous answers to the following questions will help us to improve future versions of these tutorials.
How useful was this example?
Very useful Useful Somewhat useful Not very useful A waste of time
How was the level of the example?
Too simple About right Too difficult
How much time did you spend on it?
Less than 30 mins. 30 - 60 mins. More than 60 mins.
How much of the Matlab code did you run?
None Some Most

We would like to hear about suggestions you have for improvement, difficulties you had with the tutorials, errors that you found, or any other comments that you have. This feedback is anonymous.

If you would like to receive a response, send your comments or questions to ctm-feedback@umich.edu


PID Examples
Cruise Control | DC Motor | Bus Suspension | Inverted Pendulum

Bus Suspension Examples
Modeling | PID | Root Locus | Frequency Response | State Space

Tutorials
Basics | Modeling | PID | Root Locus | Frequency Response | State Space | Examples

8/29/96 YS