Project Based Learning Ics
Project Based Learning Ics
learning
industrial control
system
NAME :
RAJDEEP :12
AVINASH :14
ISHWAR :11
SUMIT:15
Aim:
To design a PID controller using bode plot to control the system performance.
Apparatus: Personal Computer (PC)MATLAB softwareTheory: PID controllers are
commercially successful and widely used as controllers in industries.
For example, in a typical paper mill there may be a about 1500 controllers and
out of these 90 percent would be PID controllers,
The PID controller consists of a proportional mode, an Integral mode and
Derivative mode. The first letters of these modes make up the name PID
controller. Depending upon the application one or more combinations of these
modes are used.
For example, in a liquid control system where we want zero steady state error, a
PI controller can be used and in a temperature control system where zero stead
state error is not specified, a simple P controller can be used.The equation of a
PID controller in time-domain is given byd u(t)=MV(t) = K₂e(t)+K; S¦ e(t)dt+K¿ -
e(t) dtwhere
The equation of a PID controller in time-domain is given
byd u(t)=MV(t) = K₂e(t)+K; S¦ e(t)dt+K¿ -e(t) dt
Where
K, Proportional gain, a tuning parameter=K₁ = Integral gain,
a tuning parameterKD-Derivative gain,
a tuning parametere = Error =SP-PVt = Time or instantaneous time (the present)
T =Variable of integration; takes on values from time 0 to the present t.
Equivalently, the transfer function in the Laplace Domain of the PID controller isL(s)=K, +K;/s + Kas
where S: complex number frequency The controller used here is a PID controller represented by a
block PID and the system or plant is represented by
G(s). R(s) and D(s) are reference signal and disturbance signal respectively.
Y(s), E(s) and M(s) are theoutput, error and controller output of the system respectively. For the of
good control, we require the system output Y(s) to track any reference signal F(s) and at the same
time reject or suppress deviation due to purpose the disturbance signal D(s). Hence the PID
controller can realize this objective.Proportional controller:MATLAB Program:clciclear all;
num=input('enter function’)
den=input('enter the denominator offunction’)
h=tf (num, den)