Lag Compensator 087
Lag Compensator 087
Aim: To design the lag compensator to meet the given time domain specifications using Root
Locus technique.
Apparatus Required:
MATLAB Software
Theory:
Lag Compensator:
Problem Statement:
k
Design a lag compensator network for the given open loop system G(s) =
s(s 2)
Procedure:
If damping ratio alone is given, draw a line with an angle of cos-1() from the negative real
axis. The point of intersection of line on the root locus, is the complex dominant root (sd).
3. Locate the dominant root on the root locus drawn and calculate the gain (Knew) at that point.
1
Knew
G(s) ssd
8. Redraw the root locus for Gc(s) and verify the given specifications.
MATLAB Command:
z=[]
p=[-1 -2 -10]
k=[162]
sys1=zpk(z,p,k)
sysc=feedback(sys1,1)
figure(3)
step(sysc)
title('23EIR087')
z=[-0.5]
p=[-0.05]
k=[1]
sys2=zpk(z,p,k)
sys3=series(sys2,sys1)
sysc=feedback(sys3,1)
figure(4)
step(sysc)
title('23EIR087')
Steady state error of the uncompensated system = 0.11
Thus, the lag and lead compensator are designed and verified.