Second Order Transfer Function-Control Systems-Lab Reports, Exercises of Control Systems

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

2011/2012

Uploaded on 07/30/2012

badsha
badsha 🇮🇳

4.3

(28)

213 documents

1 / 4

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
P a g e | 1
Lab 7: Studying Second Order Transfer Function FA06_BET_012
Lab Task
Write down 2nd order transfer function with following inputs:
G(s) = wn2 / (s2 + 2ζwns + wn2)
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:3
figure(i)
for j = 1:10
num = (wn(i))^2;
den = [1 2*zeta(j)*wn(i) (wn(i))^2];
tr = tf(num, den);
pzmap(tr)
hold on
end
end
Matlab Code:
docsity.com
pf3
pf4

Partial preview of the text

Download Second Order Transfer Function-Control Systems-Lab Reports and more Exercises Control Systems in PDF only on Docsity!

Lab 7: Studying Second Order Transfer Function FA06_BET_

Lab Task

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

Matlab Code:

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.

Comments: