


Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
This is lab report Control Systems lab. It was assigned by and submitted to Dr. Anbu Manghirmalani at Birla Institute of Technology and Science. It includes: Order, Function, Inputs, Damping, frequency, Ratio, Matlab, Code, Pole, Conjugate
Typology: Exercises
1 / 4
This page cannot be seen from the preview
Don't miss anything!



Lab 7: Studying Second Order Transfer Function FA06_BET_
Write down 2nd^ order transfer function with following inputs:
G(s) = wn^2 / (s^2 + 2ζwns + wn^2 )
Where; wn: Frequency ζ: Damping Ratio
wn = 0.5 rad/sec, 1 rad/sec, 2 rad/sec
ζ = 0, 0.1, 0.2, 0.5, 0.7, 0.9, 1,2,10, 100
For Pole Zero Plot:
zeta = [0 0.1 0.2 0.5 0.7 0.9 1 2 10 100];
wn = [0.5 1 2];
for i=1:
figure(i)
for j = 1:
num = (wn(i))^2;
den = [1 2zeta(j)wn(i) (wn(i))^2];
tr = tf(num, den);
pzmap(tr)
hold on
end
end
Lab 7: Studying Second Order Transfer Function FA06_BET_
Results:
For Pole Zero Plot:
zeta = [0 0.1 0.2 0.5 0.7 0.9 1 2 10 100];
wn = [0.5 1 2];
for i=1:
for j = 1:
Lab 7: Studying Second Order Transfer Function FA06_BET_
For the case ζ = 0, the system is marginally stable or undamped. i.e. the conjugate pair of poles lies on the imaginary axis. As ζ decreases, poles move down in the left half plane. Both the rise time and peak time increases. For ζ = 1, both the poles are at the same point. In this case the over shoot is zero. As ζ increases, the poles disperse. ζ is not equal to zero, because in that case, the poles will be in the right half plane, making the system unstable.