Lecturer
Set up MATLAB
3.3. Proportional Plus Derivative Compensation¶
3.3.1. Introduction¶
First design example (Satellite Attitude Control).
Plant: $G(s)=1s2$
Feedback:
With velocity feedback the system is as shown in Figure 1.
Figure 1 Satellite Attitude Control with Velocity Feedback
For this system, the root locus equation is
and the design parameters where calculated to be
The closed-loop characteristic equation is
The closed-loop transfer function is then:
In this document we illustrate how we may implement a silimilar control law using cascade compensation.
3.3.2. Cascade compensator¶
An alternative compensation architecture is the cascade compensator illustrated in Figure 2.
Figure 2 The cascade compensator
The compensator is in series with the plant so that, in general, if the compensator transfer function is
and the compensator poles and zeros are simply added to the poles and zeros of the plant.
If we wish to achieve the same root-locus equation as the previous design (1) then the compensator must have transfer function
where
Let us verify that this gives the same results as the previous example:
Find the root locus gain at the point on the root locus where the poles are located at s=−2+j2.
Now add this to the compensator
Analysis of this compensator reveals that it is of a type known as “proportional plus derivative” (P+D). The output of the compensator is of the form
and is made up of a “proportion” of the error plus a proportion of the rate-of-change (or derivative) of the error. It is the derivative term that gives the dampening effect required to allow the frictionless system to come to rest.
3.3.3. Closed-loop response¶
The closed-loop tranfer function is given by
Let us plot and compare the step responses of the P+D and velocity feedback results.
3.3.4. Notes¶
Notice that, although the settling time is about the same in both designs, the overshoot is considerably larger in the P+D compensated system. This is because the zero added by the P+D compensator appears in the numerator of the closed-loop transfer function. (refer back to Contact Hour 2 for an explanation).
3.3.5. Resources¶
An executable version of this document is available to download as a MATLAB Live Script file pplusd.mlx.
The Simulink model of the satellite attitude control system with P+D compensation is satellite.slx.