Chapter4 - Time Response
Chapter4 - Time Response
Chapter4 - Time Response
Time Response
Course Instructor
Prof. Adel Abdennour
Electrical Engineering Department
Islamic University of Madinah
Step Input
5
1
Transient Response
0
0 2 4 6 8 10 12 14 16 18 20
Time (sec)
3
• For system given by: G( s )
s5
The D.C Gain is 3/5 and the time constant is 1/5 seconds.
10
9 Step Response
8
steady state output 10
D.C Gain K
7 Input 1
6 63.2%
c(t)
2
Unit Step Input
1
0
0 1 2 3 4 5 6 7 8 9 10
Time
EE 3631 Control Theory 14
EE 3631 Control Theory 15
EE 3631 Control Theory 16
• To see the effect of τ, let K=10 and τ=1, 3, 5, 7
K*(1-exp(-t/T))
11
10
T=1s
9
8 T=3s
7
T=5s
6
c(t)
5 T=7s
4
3
2
1
0
0 5 10 15
Time
EE 3631 Control Theory 17
• To see the effect of K, let K=1, 3, 5, 10 and τ =1
K*(1-exp(-t/T))
11
10
K=10
9
8
7
6
K=5
c(t)
5
4
K=3
3
2
K=1
1
0
0 5 10 15
Time
EE 3631 Control Theory 18
First-Order Transfer Functions via Testing
Input
? output
• Let us now extend the concepts of poles and zeros and transient
response to second order systems.
• Compared to the simplicity of a first-order system, a second-order
system exhibits a wide range of responses that must be analyzed
and described.
• Whereas varying a first-order system's parameter simply changes
the speed of the response, changes in the parameters of a
second-order system can change the form of the response.
• Second-order systems (systems described by second-order DE’s)
have transfer functions of the following form:
The location of the two poles is
very significant as will be seen
j y(t)
1 Response is
0 Underdamped
t
0
j y(t) Response is
1 critically damped
0 (Fastest response
without overshoot)
t
0
j y(t)
1
t
0
j y(t)
1
t
0
Answer
Remember: Poles=
n n 2
1
n n 2
1
EE 3631 Control Theory 35
EE 3631 Control Theory 36
we usually specify the response with the following parameters:
An approximation:
0.8 2.5
tr 0 1
n
EE 3631 Control Theory 43
Example: Given the transfer function:
Find Tp , %OS , Ts , and Tr .
Solution:
ωn = 10 and ξ=0.75
Substituting directly in the formulas, we find:
Tp = 0.475 second, %OS = 2.838, and Ts = 0.533 second.
For Tr , Using the table, the normalized rise time is approximately
2.3 seconds. Dividing by ωn yields Tr = 0.23 second.
Note:
• Ts2 < Ts1
• Tp2 < Tp1
• %OS1 < %OS2
𝜔𝑛 = 72 + 32 = 7.616
and 𝜉 𝐾=2 5 = 4 = 4
= 19.24
𝐽 𝐽 𝜉 2 (0.456) 2
Sometimes we use:
(I-A) instead of (sI-A)
EE 3631 Control Theory 55
You will need this:
a) Solve the preceding state equation and obtain the output for the
given exponential input.
b) Find the eigenvalues and the system poles.
B=
Matlab Code:
syms s X=( (s*I-A)^ - 1 ) * (X0+B*U);
A=[0 2 ; - 3 -5]; B=[0;1]; Y=C*X; Y=simplify (Y);
C=[1 3];X0=[2;1]; y=ilaplace (Y);
U = 1 / ( s + 1 ) ; pretty(y)
I=[1 0;0 1]; eig(A)