Assignment 3
Assignment 3
Moman Naeem
15-ME-167
October 17, 2017
φ(w) = − arctan(wτ )
1
PHASE LINEARITY:
The systems having damping ratio equal to 0.7 have variety of frequency
range over which magnitude ratio will remain at or near unity and over that
frequency range the phase shift varies linearly with frequency which is known
as phase linearity.
ANSWER 2:MATLAB CODE
Magnitude ratio vs w/wn :
x=0:0.01:167;
z=0;
y1 = 1/sqrt((1 − x2 )2 + (2 ∗ z ∗ x)2 );
z = 0.25;
y2 = 1/sqrt((1 − x2 )2 + (2 ∗ z ∗ x)2 );
z = 0.5;
y3 = 1/sqrt((1 − x2 )2 + (2 ∗ z ∗ x)2 );
z = 1;
y4 = 1/sqrt((1 − x2 )2 + (2 ∗ z ∗ x)2 );
z = 2;
y5 = 1/sqrt((1 − x2 )2 + (2 ∗ z ∗ x)2 );
plot(x, y1 , x, y2 , x, y3 , x, y4 , x, y5 )
Figure 1:
Figure 2:
2
Phase Shift vs w/wn :
x=0:0.01:167;
z=0;
y1 = atan(−2 ∗ z ∗ x/(1 − x2 ));
z = .25;
y2 = atan(−2 ∗ z ∗ x/(1 − x2 ));
z = .5;
y3 = atan(−2 ∗ z ∗ x/(1 − x2 ));
z = 1;
y4 = atan(−2 ∗ z ∗ x/(1 − x2 ));
z = 2;
y5 = atan(−2 ∗ z ∗ x/(1 − x2 ));
plot(x, y1 , x, y2 , x, y3 , x, y4 , x, y5 )
Figure 3:
Figure 4: