So your "root locus" consists of a line connecting a pole with a zero. Where comes this instruction from?
Isn't that how closed loop poles travel, how does the root locus of G(s) = (s+2)(s+9) look like?
Consider this, lets assume my plot is correct, if i wanted to find the value of K at the point s = -3 in the root locus plot, I would use the formula
\[ k = \frac{\prod |s - p_i| }{ \prod | s - z_i|} = \frac{6}{1} = 6\]
Now, if i checked the validity of this value of K by finding the poles of the CL system i would get
\[\frac{ KG(s) }{1 + KGH(s) } = \frac{ \frac{6 ( s+2 )}{s+9} }{1 + \frac{6 ( s+2) }{s+9}} = \frac{ 6(s+2) }{ (s + 9) + 6(s+2)} \]
==> Pole is @ 7s + 21 = 0
==> Pole = -3
Which is consistent because -3 is the pole we were examining.
If we were to pick s = -8, then K =1/6.
If we were to pick s = -2.1, then K = 69
==> the pole seems to be travelling towards -2 with increasing K.
Which is consistent.
Just went on Matlab and simulated it (
Code:
rlocus( tf([ 1, 2], [1 , 9]))
) and matlab drew a line from -9 to -2.