Root Locus Techniques: ELEC 312
Root Locus Techniques: ELEC 312
Root Locus Techniques: ELEC 312
ELEC 312
Closed-Loop Control
The control input u (t ) is synthesized based on
the a priori knowledge of the system (plant),
the reference input r (t ), and the error signal,
e (t )
The control system measures the output, and
compares it to the desired output (reference
input) through a feedback path to generate an
error signal
1
What is a Root Locus?
A graphical description of the movement of
each of the closed-loop poles in the complex
s-plane as open-loop parameter (gain, pole
value, etc.) varies.
Obeys magnitude and phase criteria
Points on the root locus are the only possible
closed-loop pole locations
Used in predicting the system’s overall
performance (transient response dynamics,
steady-state error, and system stability)
Aid in controller design
2
Security Camera
3
4
Example
For the following system, determine the standard
form of the characteristic equation whose closed-
loop poles can be used to construct the root locus
of the system.
5
Example
For the following system, determine the standard
form of the characteristic equation whose closed-
loop poles can be used to construct the root locus
of the system.
6
Rule 1
The root locus has as many branches as
there are open-loop poles
Each branch represents the perambulation
of a closed-loop pole in the s-plane as K
varied from 0 to
Each branch begins at an open-loop pole
(K = 0) and ends at a finite open-loop zero
or at a zero at infinity (K )
Assuming real systems, all coefficients are
real. Consequently, the root locus plot will
be symmetric about the real axis
7
Example
Example: Determine the root locus for each of the
systems defined by the following transfer functions:
(𝑠 + 2) (𝑠 + 2)(𝑠 + 3)
1) 𝐺1 𝑠 𝐻1 𝑠 = 2) 𝐺2 𝑠 𝐻2 𝑠 =
(𝑠 + 1)(𝑠 + 3) (𝑠 + 1)(𝑠 + 4)
8
Example
Determine the root locus for each of the systems
defined by the following open-loop transfer functions:
9
Rule 4
The root locus goes to infinity by radiating from
a centroid located at
at angles of
Example
Determine the root locus for the systems defined by
1
𝐺5 𝑠 𝐻5 𝑠 =
(𝑠 + 1)(𝑠 + 2)
10
Example
Determine the root locus for the systems defined by
1
𝐺6 𝑠 𝐻6 𝑠 =
(𝑠 + 1)(𝑠 + 2)(𝑠 + 3)
Example
Determine the root locus for the systems defined by
1
𝐺7 𝑠 𝐻7 𝑠 =
(𝑠 + 1)(𝑠 + 2)(𝑠 + 3)(𝑠 + 4)
11
Example
Determine the root locus for the system defined by
(𝑠 + 2)
𝐺8 𝑠 𝐻8 𝑠 =
(𝑠 + 1)(𝑠 + 3)(𝑠 + 4)
12
Example
( s 1)
Given F ( s ) , evaluate F(s) at the point s = 3+j4.
s ( s 2)
𝐾𝐵1
𝐺 𝑠 𝐻 𝑠 =
𝐴1 𝐴2 𝐴3 𝐴4
∠𝐺 𝑠 𝐻 𝑠 = 𝜙1 − 𝜃1 − 𝜃2 − 𝜃3 − 𝜃4
13
Rule 5
The root locus makes an angle D (angle of
departure) with respect to the positive real
axis as it leaves the complex conjugate pole
with positive imaginary part, p1.
14
Rule 5 (Continued)
The root locus makes an angle A (angle of
arrival) with respect to the positive real
axis as it arrives at the complex conjugate
zero with positive imaginary part, z1.
15
Example
Determine the root locus for the system defined by
(𝑠 2 + 2𝑠 + 2)
𝐺9 𝑠 𝐻9 𝑠 = 2
(𝑠 + 5𝑠 + 10)
Example
Determine the root locus for the system defined by
1
𝐺10 𝑠 𝐻10 𝑠 =
(𝑠 2 + 2𝑠 + 2)
16
Example
Determine the root locus for the system defined by
1
𝐺11 𝑠 𝐻11 𝑠 =
𝑠(𝑠 2 + 2𝑠 + 2)
Example
Determine the root locus for the system defined by
(𝑠 + 2)
12) 𝐺12 𝑠 𝐻12 𝑠 =
(𝑠 + 1)(𝑠 + 3)(𝑠 2 + 2𝑠 + 2)
17
(𝑠 + 3)
𝐺 𝑠 𝐻 𝑠 =
𝑠(𝑠 + 2)(𝑠 2 + 4𝑠 + 5)
(𝑠 + 3)
𝐺 𝑠 𝐻 𝑠 =
𝑠(𝑠 + 2)(𝑠 2 + 4𝑠 + 13)
18
Rule 6
At any point on the locus, the variable (K ) can
be calculated as the product of distances from
the point to the open-loop poles divided by the
product of distances from the point to the
open-loop zeroes.
19
Example
Determine the root locus gain at the three points
indicated on the plot below.
20
Example
Plot a root locus if the four poles are at -1, -4, -5 and
-8. The single zero is at s = -3. Find the gain which
produces instability. Also, calculate the gain for a
damping ratio of 0.5.
num = poly([-3]);
den = poly([-1 -4 -5 -8]);
rlocus(num,den)
sgrid(0.5,[]); axis([-10 2 -10 10])
[k poles] = rlocfind(num,den)
21