Expt 2
Expt 2
Aim: To design and realize PD compensator for a unity feedback system with G(s) as given
below to reduce settling time by a factor 4 while continuing to operate a system at 20%
overshoot. Use Control System Designer tool.
k
𝐺(𝑠) = 𝑠(𝑠 + 𝑎)(𝑠 + 𝑏)
Where, a = 1 + last digit of your MIS and b = 6 + last two digits of your MIS.
Design Steps:
Follow the following design steps; mention your answer in the third column
s = tf('s');
zeta = 0.456;
Ts = 0.227;
omega_n = 4 / (zeta * Ts);
s_d = -(zeta * omega_n) + 1j * (omega_n * sqrt(1 - zeta ^ 2));
G_open = 5776 / (s * (s + 10) * (s + 65));
G_close = feedback(G_open, 1);
step(G_close);
• Uncompensated system step input response
rlocus(G_open);
hold on;
plot(real(s_d), imag(s_d), 'rx', 'MarkerSize', 10, 'LineWidth', 2);