Pid PDF
Pid PDF
The PID controller algorithm involves three separate constant parameters, and is
accordingly sometimes called three-term control: the proportional, the integral
and derivative values, denoted P, I, and D. Simply put, these values can be
interpreted in terms of time: P depends on the present error, I on the
accumulation of past errors, and D is a prediction of future errors, based on
current rate of change. The weighted sum of these three actions is used to adjust
the process via a control element such as the position of a control valve or a
damper.
Some applications may require using only one or two actions to provide the
appropriate system control. This is achieved by setting the other parameters to
zero. A PID controller will be called a PI, PD, P or I controller in the absence of the
respective control actions. PI controllers are fairly common, since derivative
action is sensitive to measurement noise.
Defining u(t) as the controller output or control input to plant, the final form of
the PID algorithm is:
Where
: Error
SP=Setpoint value
Proportional term
The proportional term produces an output value that is proportional to the
current error value. The proportional response can be adjusted by multiplying the
error by a constant Kp, called the proportional gain constant.
A high proportional gain results in a large change in the output for a given change
in the error & can cause unstable system. A small gain results in a small output
response to a large input error, and less sensitive controller. Tuning theory and
industrial practice indicate that the proportional term should contribute the bulk
of the output change.
Integral term
The contribution from the integral term is proportional to both the magnitude of
the error and the duration of the error. The integral in a PID controller is the sum
of the instantaneous error over time and gives the accumulated offset that should
have been corrected previously. The accumulated error is then multiplied by the
integral gain ( ) and added to the controller output.
The integral term accelerates the movement of the process towards setpoint and
eliminates the residual steady-state error that occurs with a pure proportional
controller.
Derivative term
The job of derivative control is to react to changes in the system. A constant error
will be dealt with by proportional and integral control
The derivative of the process error is calculated by determining the slope of the
error over time and multiplying this rate of change by the derivative gain Kd. The
magnitude of the contribution of the derivative term to the overall control action
is termed the derivative gain, Kd.
The derivative term is given by:
Derivative action predicts system behavior and thus improves settling time and
stability of the system. Derivative action is seldom used in practice.
Stability
If the PID controller parameters (the gains of the proportional, integral and
derivative terms) are chosen incorrectly, the controlled process input can be
unstable, i.e., its output diverges, with or without oscillation, and is limited only
by saturation. Instability is caused by excess gain.
Generally, stabilization of response is required and the process must not oscillate
for any combination of process conditions and set-points, though
sometimes marginal stability (bounded oscillation) is acceptable or desired.
Tuning method:
Requires
Manual
No math required; online. experienced
tuning
personnel
Manual tuning:
Settling Steady-state
Overshoot Stability
Parameter Rise time time error
Small
Decrease Increase Decrease Degrade
change
ZieglerNichols method
Another heuristic or experience-based tuning method is formally known as
the ZieglerNichols method, introduced by John G. Ziegler and Nathaniel B.
Nichols in the 1940s. As in the method above, the and gains are first set to
zero. The proportional gain is increased until it reaches the ultimate gain, , at
which the output of the loop starts to oscillate. and the oscillation
period are used to set the gains as shown:
ZieglerNichols method
Control Type
P - -
PI -
PID
These gains apply to the ideal, parallel form of the PID controller. When applied
to the standard PID form, the integral and derivative time
parameters and are only dependent on the oscillation period .
PID tuning software
Most modern industrial facilities no longer tune loops using the manual
calculation methods shown above. Instead, PID tuning and loop optimization
software are used to ensure consistent results. These software packages will
gather the data, develop process models, and suggest optimal tuning. Some
software packages can even develop tuning by gathering data from reference
changes.
1)
The error signal ( ) will be sent to the PID controller, and the controller computes
both the derivative and the integral of this error signal.
The control signal ( ) is sent to the plant, and the new output ( ) is obtained. The
new output ( ) is then fed back and compared to the reference to find the new
error signal ( ). The controller takes this new error signal and computes its
derivative and its integral again, ad infinitum.
The transfer function of a PID controller is found by taking the Laplace transform
of Eq. (1).
2)
Ki = 1;
Kd = 1;
s = tf('s');
C = Kp + Ki/s + Kd*s
C=
s^2 + s + 1
-----------
s
Continuous-time transfer function of controller.
The Characteristics of P, I, and D Controllers
A proportional controller ( ) will have the effect of reducing the rise time and
will reduce but never eliminate the steady-state error. An integral control ( ) will
have the effect of eliminating the steady-state error for a constant or step input,
but it may make the transient response slower. A derivative control ( ) will have
the effect of increasing the stability of the system, reducing the overshoot, and
improving the transient response.
6. Lastly, please keep in mind that you do not need to implement all three controllers
(proportional, derivative, and integral) into a single system, if not necessary. For
example, if a PI controller gives a good enough response, then you don't need to
implement a derivative controller on the system. Keep the controller as simple as
possible.
Example Problem
The transfer function between the displacement and the input then
becomes
Let
M = 1 kg
b = 10 N s/m
k = 20 N/m
F=1N
Plug these values into the above transfer function
The goal of this problem is to show you how each of , and contributes to
obtain
Fast rise time
Minimum overshoot
No steady-state error
s = tf('s');
P = 1/(s^2 + 10*s + 20);
step(P)
The DC gain of the plant transfer function is 1/20, so 0.05 is the final value of the
output to an unit step input. This corresponds to the steady-state error of 0.95,
quite large indeed. Furthermore, the rise time is about one second, and the
settling time is about 1.5 seconds. Let's design a controller that will reduce the
rise time, reduce the settling time, and eliminate the steady-state error.
In the figure, steady state error can be seen at allowable tolerance
Proportional Control
From the table shown above, we see that the proportional controller (Kp) reduces
the rise time, increases the overshoot, and reduces the steady-state error.
Let the proportional gain ( ) equal 300 and change the m-file to the following:
Kp = 300;
C = pid(Kp)
T = feedback(C*P,1)
t = 0:0.01:2;
step(T,t)
C=
Kp = 300
P-only controller.
T=
300
----------------
s^2 + 10 s + 320
Continuous-time transfer function.
The above plot shows that the proportional controller reduced both the rise time
and the steady-state error, increased the overshoot, and decreased the settling
time by small amount.
Proportional-Derivative Control
Now, let's take a look at a PD control. From the table shown above, we see that
the derivative controller (Kd) reduces both the overshoot and the settling time.
The closed-loop transfer function of the given system with a PD controller is:
Let equal 300 as before and let equal 10. Enter the following commands
into an m-file and run it in the MATLAB command window.
Kp = 300;
Kd = 10;
C = pid(Kp,0,Kd)
T = feedback(C*P,1)
t = 0:0.01:2;
step(T,t)
C=
Kp + Kd * s
with Kp = 300, Kd = 10
Continuous-time PD controller in parallel form.
T=
10 s + 300
----------------
s^2 + 20 s + 320
This plot shows that the derivative controller reduced both the overshoot and the
settling time, and had a small effect on the rise time and the steady-state error.
Proportional-Integral Control
Before going into a PID control, let's take a look at a PI control. From the table, we
see that an integral controller (Ki) decreases the rise time, increases both the
overshoot and the settling time, and eliminates the steady-state error. For the
given system, the closed-loop transfer function with a PI control is:
X(s)/F(s) = (Kp+Ki/s)/ (s2+10s+20+Kp+Ki/s)
Let's reduce the to 30, and let equal 70. Create an new m-file and enter the
following commands.
Kp = 30;
Ki = 70;
C = pid(Kp,Ki)
T = feedback(C*P,1)
t = 0:0.01:2;
step(T,t)
C=
1
Kp + Ki * ---
s
with Kp = 30, Ki = 70
Continuous-time PI controller in parallel form
T=
30 s + 70
------------------------
s^3 + 10 s^2 + 50 s + 70
Continuous-time transfer function.
Run this m-file in the MATLAB command window, and you should get the
following plot. We have reduced the proportional gain (Kp) because the integral
controller also reduces the rise time and increases the overshoot as the
proportional controller does (double effect). The above response shows that the
integral controller eliminated the steady-state error.
Proportional-Integral-Derivative Control
Now, let's take a look at a PID controller. The closed-loop transfer function of the
given system with a PID controller is:
After several trial and error runs, the gains = 350, = 300, and = 50
provided the desired response. To confirm, enter the following commands to an
m-file and run it in the command window. You should get the following step
response.
Kp = 350;
Ki = 300;
Kd = 50;
C = pid(Kp,Ki,Kd)
T = feedback(C*P,1);
t = 0:0.01:2;
step(T,t)
C=
1
Kp + Ki * --- + Kd * s
s
with Kp = 350, Ki = 300, Kd = 50
Continuous-time PID controller in parallel form.
Now, we have obtained a closed-loop system with no overshoot, fast rise time,
and no steady-state error.
Electronic Controllers:
Home Assignment