Experiment 01: Aim of The Experiment
Experiment 01: Aim of The Experiment
THEORY‐
In The time response of control system consists of two
parts. Transient response and steady state response. C(t)
= Ctr(t) + Css(t). Most of the control systems use
time as its independent variable. Analysis of response
means to see the variation of output with respect to
time. The output of the system takes some finite time
to reach to its final value. Every system has a tendency
to oppose the oscillatory behaviour of the system which
is called damping. The damping is measured by
a factor called damping ratio of the system. If the
damping is very high, then there will not be any
oscillations in the output. The output is purely
exponential.
PROCEDURE‐
Graph:
1b) Evaluation of the effect of additional poles and
zeros on time response
of second order system:
MATLAB program to evaluate the effect of additional
poles and zeros on time
response of second order system. This program uses the
command zpk.
For the second order system the poles are -10+30i and -
10-30i
The program given below gives the time response of 2nd
order system:
z= [];
P= [-10+30i -10-30i];
K=1000;
sys=zpk (z, P, K)
t= [0:0.001:1];
step (sys, t);
grid
For the second order system, if we add a pole it changes
to third order.
1c) Effect of loop gain of a negative feedback system
on stability:
The following program is used to study the effect of loop
gain of a negative
feedback system on stability. The value of gain k is
varied and different step
responses are obtained.
clc
z= []
p= [-0.5+i -0.5-i -1];
k1=1;
k2=2;
k3=3;
sys1=zpk (z, p, k1)
sys2=zpk (z, p, k2)
sys3=zpk (z, p, k3)
t= [0:0.01:20];
[y1, t] =step (sys1, t)
[y2, t] =step (sys2, t)
[y3, t] =step (sys3, t)
plot (t, y1, t, y2, t, y3)
legend('k=1','k=2','k=3')
Grid
RESULT:
1. VARY THE DAMPING RATIO
ξ=0.2 , 0.5 , 0.8
= 52.73%
2. ADDITIONAL POLES
CONCLUSION:
The time response of a second order system in case of
under damped, over damped and critically damped
systems was successfully obtained using MATLAB.