Lecturer
Set up MATLAB
2. Steady-state and Transient Response¶
This chapter is concerned with the analysis of steady-state and transient response performance of control systems.
The second-order system response and its relationship to the closed-loop poles and zeros is revised. The effect of an additional zero or an additional pole on the 2nd order response is examined and pole-zero cancellation is discussed.
System type-number and its relationship to steady-state error response is revised.
2.1. Reading¶
You should read sections 4.2 Time Domain Criteria and 4.1 Steady-State Criteria of the Handout Control System Design Methods, Compensation Strategies and Design Criteria.
2.2. Transient Performance¶
2.2.1. A Second-Order System¶
Where are the system poles and what does the model 2nd Order response look like for each of these cases?
ωn |
ζ |
---|---|
3 |
3 |
3 |
1 |
3 |
0.8 |
3 |
0.5 |
3 |
0 |
2.2.2. Effect of Damping on 2nd Order Response¶
Or download and run this script second_resp.m in MATLAB.
2.2.3. How do the natural frequency and damping ratio relate to pole locations?¶
2.2.4. How do the transient performance criteria map to the closed loop poles?¶
2.2.4.1. Settling time Ts¶
Settling time is related to relative stability and speed of response.
1% settling time:
2.2.4.3. Percentage overshoot (%OS or Mp)¶
Percentage overshoot is related to damping
2.2.4.4. Combined constraints¶
If system has inadequate rise time (too slow) we must raise the natural frequency
If system has too much overshoot we need to increase damping
If transient persists too long, move the poles further to the left in the s-plane
2.2.5. What if the system is not second order?¶
What is the effect of an extra zero?
What is the effect of an extra pole?
What if there are many poles and zeros?
2.2.5.1. Effect of an Extra Zero¶
First normalize transfer function:
Then add a zero
Note that α is a multiplier of the real part of the complex poles ζωn.
2.2.5.2. 2nd order system with extra zero¶
Matlab demo (run zero2nd.m):
Design curves (see handout):
2.2.5.3. .. how about adding an extra pole?¶
Note that α is a multiplier of the real part of the complex poles.
2.2.5.4. 2nd order system with extra pole¶
Matlab demo (run pole2nd.m):
Design curves (see handout):
2.2.6. Dominant poles and order reduction¶
Because the time response of many real systems will be dominated by two or three low frequency poles, a complex high order system can often be simplified by ignoring the effects of high-frequency poles and zeros or a pole that is effectively cancelled by a zero. This MATLAB script file demonstrates this.
Matlab demo (Run reduction.m)
In this example we ignore any poles or zeros that are located 4 or more times the real part of the dominant poles s=−1±j or poles that a cancelled by a closed-loop zero and see that the seventh order system is effectively only a third-order system.
Now remove redundant terms
Step 1: remove high frequency pole at −9∗σ
Step 2: remove complex hf pole pair
Step 3: remove hf zero
Step 4: remove pole-zero cancellation terms
Step 5: remove last non-dominant pole’)
Original system
Reduced order system
What are the steady-state performance criteria?
2.3. Steady-state response¶
Canonical system
Disturbance rejection
System type for non-unity gain feedback
2.3.2. Steady-state Performance¶
For a unity-gain negative feedback system with open-loop transfer function Go(s) the steady-state error (SSE) response of the closed-loop system is related to system type number according to the table shown below.
System Type Number | ||||
Type 0 | Type 1 | Type 2 | ||
Type of input | SSE | Step | Velocity | Acceleration |
Step | $$\frac{1}{1+K_p}$$ | $$\frac{1}{1+K_p}$$ | $\infty$ | $\infty$ |
Ramp | $$\frac{1}{K_v}$$ | $$0$$ | $$\frac{1}{K_v}$$ | $\infty$ |
Parabola | $$\frac{1}{K_a}$$ | $$0$$ | $$0$$ | $$\frac{1}{K_a}$$ |
Position error constant for step input: R(s)=1/s:
Velocity error constant for ramp input: R(s)=1/s2:
Acceleration error constant for parabolic input: R(s)=1/s3:
2.4. Special Cases¶
For these models calculate the error response (E(s)=Go(s)Nd(s) for the “disturbance rejection” case and E(s)=R(s)−C(s) for the “non-unity-gain-feedback”) case and use the final value theorem to calculate the steady state step error.
Compare your result with the result of the simulation.
You should note that in both cases the plant transfer function has type number 1. Do the rules of system type number as you understand them carry over to these special cases?
2.4.1. Disturbance rejection? (Compliance)¶
Assuming that the system is originally at steady-state (E(s)=R(s)−C(s)=0) what is the steady-state error to a step change in the disturbance in nd(t)? (Nd(s)=1/s)
[Model file disturbance_rejection.mdl]
2.5. Further Reading¶
The System Metrics section of the Control Systems Wikibook amplifies some of the topics covered in this chapter.
The topics covered in this chapter are also amplified in
Nise. Chapter 4: Time Response.
Dorf and Bishop. Chapter 5: The Performance of Feedback Control Systems.