Control System Toolbox (Part-II) : Imtiaz - Hussain@faculty - Muet.edu - PK
Control System Toolbox (Part-II) : Imtiaz - Hussain@faculty - Muet.edu - PK
Control System Toolbox (Part-II) : Imtiaz - Hussain@faculty - Muet.edu - PK
1
Outline
C( s ) K
R( s ) Ts 1
• Where K is the D.C gain and T is the time constant of the system.
• D.C Gain of the system is ratio between the input signal and the
steady state value of output.
Step Response
10
G( s )
3s 1
To obtain the step response of the system
num = 10;
den = [3 1];
step(num,den)
or
num = 10;
den = [3 1];
sys=tf(num, den)
step(sys)
Impulse Response
10
G( s )
3s 1
num = 10;
den = [3 1];
impulse(num,den)
08/19/2020
Ramp Response
10
G( s )
3s 1
08/19/2020
Exercise-1: Obtain the step and ramp responses
of the following 1st order system for T=1, 2, 3 5,
10 seconds.
2
G( s )
Ts 1
08/19/2020
Exercise-2: Obtain the step and ramp responses
of the following 1st order system for K=1, 5, 10
and 15.
K
G( s )
3s 1
08/19/2020
1st Order System with a Zero
C ( s ) K (1 s )
R( s ) Ts 1
C ( s ) K (1 s )
R( s ) Ts 1
(iv) And compare the results with system w/o zero
C( s ) K
08/19/2020 R( s ) Ts 1
TIME RESPONSE OF 2ND ORDER
SYSTEMS
Introduction
• A general second-order system is characterized by the following
transfer function.
C( s ) n2
2
R( s ) s 2 n s n2
Undamped Natural Frequency &
Damping ratio
• Determine the un-damped natural frequency and damping ratio of
the following second order system.
C( s ) 4
2
R( s ) s 2 s 4
To find the undamped natural frequency and damping
ratio in matlab
num=4
den=[1 2 4]
sys=tf(num, den)
damp(sys)
Exercise-4: Obtain the pole zero map and step response
of the 2nd order system and determine the mode of
damping in the system. If the system is underdamped
obtain the time domain specifications. On the pole zero
map show that corresponding damping ratio and natural
undamped frequency of the poles.
(i) ωn=3 r/s and ζ=1
(ii) ωn=3 r/s and ζ=2
C( s ) n2
(iii) ωn=3 r/s and ζ=0.1 2
R( s ) s 2 n s n2
(iv) ωn=3 r/s and ζ=0.5
(v) ωn=3 r/s and ζ=0
Exercise-5: Obtain the step response of the 2nd order
system if
(i) ωn=0.1 r/s and ζ=0.5
(ii) ωn=0.3 r/s and ζ=0.5
(iii) ωn=0.6 r/s and ζ=0.5
(iv) ωn=1 r/s and ζ=0.5
(v) ωn=1.5 r/s and ζ=0.5
C( s ) n2
2
R( s ) s 2 n s n2
Exercise#6
Describe the nature of the second-order system response via the value
of the damping ratio for the systems with transfer function
12
1. G ( s ) 2
s 8 s 12
16
2. G ( s ) 2
s 8s 16
20
3. G ( s ) 2
s 8 s 20
17
You can Download this tutorial from
http://imtiazhussainkalwar.weebly.com/
END OF TUTORIAL
08/19/2020