4.2.3. Tuning a PID Compensator

This Section presents an example that illustrates the effects of tuning the PID parameters on the step and error response of a simple system. The system model used is that of Figure 3.8 in Franklin, Powell and Emami-Naeni’s “Feedback Control of Dynamic Systems” (2nd Ed.).

Lecturer

Set up MATLAB

%cd matlab
pwd
clear all
imatlab_export_fig('print-svg')  % Static svg figures.
format compact
Copy to clipboard
ans =
    '/Users/eechris/code/src/github.com/cpjobling/eglm03-textbook/04/2'
Copy to clipboard

4.2.3.1. The PID Compensator

A PID compensator has the transfer function:

D(s)=U(s)E(s)=Kprop+KIs+sKD(s)
D(s)=KDs2+Kprops+KIs

This can be rearranged into a form that is often found in commercial implementations of the PID compensator:

D(s)=Kprop((KD/Kprops2)+s+(KI/Kprop))s=Kprop(TDs2+s+1/TI)sD(s)=Kprop(1+TDs+1/(TIs))

where Kprop is called the “proportional gain” (with units of percentage, i.e. 100% is equivalent to D(s)=1), TD=KD/Kprop is known as the “derivative time”, TI=KI/Kprop is the “integral or reset time” and 1/TI is called the “reset rate”. The tuning parameters provided with commercial PID compensators are often calibrated in these units.

4.2.3.2. Tuning the PID

In this example a simple type 0 control system with open loop transfer function:

G(s)=1(s+1)(5s+1)

is to be compensated with a PID compensator and the step and error responses are considered as each parameter is adjusted.

We first define the plant:

s = tf('s');
G = 1/((s + 1)*(5*s + 1))
Copy to clipboard
G =
Copy to clipboard
         1
Copy to clipboard
  ---------------
  5 s^2 + 6 s + 1
Copy to clipboard
Continuous-time transfer function.
Copy to clipboard

We then obtain the step response and error responses of the plant with unity gain feedback and no controller.

The closed loop transfer function of the system is

Gc(s)=G(s)1+G(s)
Gc=feedback(G,1)
Copy to clipboard
Gc =
Copy to clipboard
         1
Copy to clipboard
  ---------------
Copy to clipboard
  5 s^2 + 6 s + 2
Copy to clipboard
Continuous-time transfer function.
Copy to clipboard

The error transfer function is given by

Ge(s)=11+G(s)
Ge=1/(1+G)
Copy to clipboard
Ge =
Copy to clipboard
  5 s^2 + 6 s + 1
Copy to clipboard
  ---------------
Copy to clipboard
  5 s^2 + 6 s + 2
Copy to clipboard
Continuous-time transfer function.
Copy to clipboard

To simulate these responses:

subplot(211),step(Gc),title('Step Response'),grid
subplot(212),step(Ge),title('Error Response'),grid
Copy to clipboard
../../_images/tuning_14_0.svg

The incompensated system has a large steady-state step error of 0.5 (or 50%). It is also overdamped and therefore slow.

4.2.3.3. First Tuning Stage: Add Proportional Gain

Let us add some proportional control to decrease the rise time and to reduce the error to 5%. Increasing the proportional gain of the system can satisfy the error requirement

Kprop = 19;  
D = Kprop;  
Go = D*G
Copy to clipboard
Go =
Copy to clipboard
        19
Copy to clipboard
  ---------------
Copy to clipboard
  5 s^2 + 6 s + 1
Copy to clipboard
Continuous-time transfer function.
Copy to clipboard
Gc = feedback(Go,1);
Ge = 1/(1 + Go);  
subplot(211),step(Gc),title('Step Response: Kprop = 19'),grid
subplot(212),step(Ge),title('Error Response: Kprop = 19'),grid
Copy to clipboard
../../_images/tuning_18_0.svg

Note that the steady-state error is now 5% as required and that the proportional controller has speeded up the response time, but at the cost of reduced damping and excessive overshoot and settling time.

4.2.3.4. Second Tuning Stage: Add Derivative Action

To reduce the overshoot and settling time we add some derivative action to dampen the response without affecting the steady state error.

Td = 4/19;  
Deriv = Td*s;
D = Kprop *(1 + Deriv);  
Go = D*G;
Copy to clipboard
Gc = feedback(Go,1)  
Ge=1/(1 + Go)
Copy to clipboard
Gc =
Copy to clipboard
      4 s + 19
Copy to clipboard
  -----------------
Copy to clipboard
  5 s^2 + 10 s + 20
Copy to clipboard
Continuous-time transfer function.
Copy to clipboard
Ge =
Copy to clipboard
   5 s^2 + 6 s + 1
Copy to clipboard
  -----------------
Copy to clipboard
  5 s^2 + 10 s + 20
Copy to clipboard
Continuous-time transfer function.
Copy to clipboard
subplot(211),step(Gc),title('Step Response: Kprop = 19, Td = 4/19'),grid
subplot(212),step(Ge),title('Error Response: Kprop = 19, Td = 4/19'),grid
Copy to clipboard
../../_images/tuning_23_0.svg

4.2.3.5. Third Tuning Stage: Add Integral Action

Finally adding some integral action will eliminate the steady-state step error altogether.

Ti = 2;  
Integ = (1/Ti)/s;
D = Kprop*(1 + Deriv + Integ);  
Go = D*G
Copy to clipboard
Go =
Copy to clipboard
  4 s^2 + 19 s + 9.5
Copy to clipboard
  ------------------
Copy to clipboard
  5 s^3 + 6 s^2 + s
Copy to clipboard
Continuous-time transfer function.
Copy to clipboard
Gc=feedback(Go,1)
Ge=1/(1 + Go)
Copy to clipboard
Gc =
Copy to clipboard
      4 s^2 + 19 s + 9.5
Copy to clipboard
  ---------------------------
Copy to clipboard
  5 s^3 + 10 s^2 + 20 s + 9.5
Copy to clipboard
Continuous-time transfer function.
Copy to clipboard
Ge =
Copy to clipboard
       5 s^3 + 6 s^2 + s
Copy to clipboard
  ---------------------------
Copy to clipboard
  5 s^3 + 10 s^2 + 20 s + 9.5
Copy to clipboard
Continuous-time transfer function.
Copy to clipboard
subplot(211),step(Gc),title('Step Response: Kprop = 19, Td = 4/19, Ti = 2'),grid 
subplot(212),step(Ge),title('Error Response: Kprop = 19, Td = 4/19, Ti = 2'),grid
Copy to clipboard
../../_images/tuning_27_0.svg

4.2.3.6. Comments

One would probably try further adjustments to reduce the overshoot that the addition of integral action produces

4.2.3.7. Exercises

You might like to try further adjustments of the parameters Kprop, Td and TI.

See also the companion documents on the Analytical design of a PID compensator and Zeigler-Nichols tuning and Autotuning a PID Compensator with MATLAB.

4.2.3.8. Resources

An executable version of this document is available to download as a MATLAB Live Script file pid_tuning.mlx. You can simulate this design using the file pid_cl.slx.