blob: d22f9f087c49f89a4550100d71255a0cc97f5a63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
syms s Td
G=(1+s*Td)/(s*(s+1.6))
H=1
T=G/(1+G*H)
omegaN=2; //comparing the denominator with standard form
zeta=1 //zeta=(1.6+4*Td)/(4)
Td=(4-1.6)/4
disp(Td,"Td = ")
Ts=4/(zeta*omegaN)
disp(Ts," Ts = ")
|