You are on page 1of 21

LIM, SHERYL M.

DATE: 03/31/24
PCEIT-29-601P
ACTIVITY #8 SECOND ORDER SYSTEM SHERYL LIM

1.

System Natural Frequency Damping Ratio


a 6.42, 15. 60 -1, -1
b 10, 10 -1, -1
c 10, 10 -0.5, -0.5
d 10, 10 0, 0
e 10, 10 0.5, 0.5
f 10, 10 1, 1
g 6.42, 15. 60 1, 1
2.
3.
4.

% Overshoot Peak time (sec) Rise time(sec) Settling Time(sec)


0.359 0.164 0.808
5.
Create a matlab m file secondordersys.m that will accept ϛ and Plot the pole- zero map and
step response showing %OS, rise time, settling time and peak time.

Matlab m file:
%Calculate the %OS, Tpeak(sec), Trise(sec),Tsettling(sec) wn=input('Enter
value of wn>')
zeta=input('Enter value of zeta>') num=[0 0
wn^2]
den=[1 2*zeta*wn wn^2]
T=tf(num,den)
Ts=4/(zeta*wn)
Tp=pi/(wn*sqrt(1-zeta^2))
Tr=((1.76*zeta^3-
0.417*zeta^2+1.039*zeta+1)/wn)
percentOS=(exp(-(zeta*pi)/sqrt(1-
zeta^2))*100) subplot(221)

step(T)
'(Pole-Zero Map)'
6.

ϛ % OS Tpeak Trise(sec) Tsettling(sec)

10 0.1 72.92 0.32 0.11 4


10 0.2 52.66 0.32 0.12 2
10 0.3 37.23 0.33 0.13 1.3
10 0.4 25.38 0.15 0.34 1
10 0.5 16.30 0.36 0.16 0.80
10 0.6 9.48 0.39 0.19 0.67
1 0.7 4.59 4.39 2.13 5.71
2 0.8 1.52 2.62 1.23 2.50
3 0.9 0.15 2.40 0.96 1.48
4 0.1 72.92 0.79 0.28 10
5 0.1 72.92 0.63 0.22 8
6 0.1 72.92 0.53 0.18 6.67
7 0.1 72.92 0.45 0.16 5.71
8 0.1 72.92 0.39 0.14 5
9 0.1 72.92 0.35 0.12 4.44
10 0.1 72.92 0.32 0.11 4

You might also like