Solution 5.8.3.6
For the system of Figure 1 let
G
H
+R
C
Figure 1: Standard Closed Loop Conguration
GH =
K(s+4;j4)(s+4+j4)(s+1)
s(s+2;j2)(s+2+j2)
=
The rst step in drawing the root locus is to plot the poles and zeros of
GH.Thepoles of GH are not the closed loop pole locations, but they can
be used to nd the closed loop poles. The closed loop zeros can be found
immediately: they are the zeros of G and the poles of H.Thepoles and
zeros of GH serves as landmarks that help in nding the poles of the closed
loop system.
The portion of the root locus on the real axis is the shaded region shown
in Figure 2. This region is determined byinvoking the rule that states that
root locus on the real axis is found to the left of an odd countofpoles and
zeros of GH.
The root locus has three poles and three nite zeros. All of the limbs of
the root locus will end at the nite zeros, and there are no asymptotes. The
root locus is shown in Figure 3.
Im(s)
Re(s)
X
X
X
-1
Figure 2: Root Locus on Real Axis
1
Im(s)
Re(s)
-1
X
X
X
Figure 3: Probable root locus
2
Im(s)
Re(s)
-1
θ
1
θ
2
α
1
θ
3
α
3
α
2
Figure 4: Calculation of angle of Departure
The angle of departure can be found using Figure 4.
1
+
2
+
3
;
1
;
2
;
3
= ;180
:
As the circle shrinks in radius all the angles except
1
can be computed.
That is,
1
=
1
+
2
+
3
+180
;
2
;
3
= 116:57
+71:57
+180
;45
;135
;90
= 98:13
The angle of arrival can be found using Figure 5 and the equation
1
=
1
+
2
+
3
;
2
;
3
;180
:
As the circle shrinks in radius all the angles except
1
can be computed.
That is,
1
= 135
+135
+108:43
;126:87
;90
;180
= ;18:43
MATLAB dialogue
3
Im(s)
Re(s)
-1
θ
1
θ
2
α
1
θ
3
α
3
α
2
Figure 5: Calculation of angle of Departure
EDU>gh = zpk([-4+j*4 -4-j*4 -10],[0 -2+j*2 -2-j*2],100)
Zero/pole/gain:
100 (s+10) (s^2 + 8s + 32)
--------------------------
s(s^2+4s+8)
EDU>rlocus(gh)
EDU>print -deps rl5836f.eps
EDU>
draws the root locus shown in Figure 6. The MATLAB root locus program
"rlocus' is not very good so the angle of departure appears to be positive
even though we knowitisnegative.
4
-5 -4 -3 -2 -1 0 1
-4
-3
-2
-1
0
1
2
3
4
Real Axis
Imag Axis
Figure 6: MATLAB generated root locus
5