PLC PID



PID controls are used to bring things to a desired level.  Maybe it’s the temperature of a liquid or the speed of a motor.  Using the PID’s 3 components (Proportional, Integral & Derivative), users can adjust how quickly and cleanly a desired level are achieved.

Example: Lets say we’ve got a pot of water on a burner and want to bring it up to 90°C quickly, without overshooting the temperature by more than 1°.  How would you do this?  You’d probably turn the burner on high until the temperature gets within a few degrees of 90°, then scale back the burner so the temperature rises slower to prevent overheating.  This scaling back the burner would likely happen in several stages until you reach a steady 90°.  A PLC could do this process for you using PID.  First a couple terms:

  • Set Point: 90°C.  The value were trying to reach and hold
  • Input (also called Process Variable): the water temperature.  What were trying to get to the Set Point.
  • Output (also called Control Variable): the Burner.  What we adjust to reach our Set Point.
  • Error: the difference between the Output and the Set Point.
So, PIDs watch Inputs to decide how to change their Output to reach the Set Point.


Proportional: Looks at the present.  It uses the current error to determine Input.  Typically it is in charge of most of the error reduction.

Integral: Looks at the past.  It uses a sum of past errors to eliminate long term error.

Derivative: Looks at the future.  Trying to predict where the signal is going, it can be used to prevent both overshooting Set Points and output ringing.

Instead of going into detail on this subject, we point you to a great article written by Tim Wescott on the subject: PID without a PHD.

                                                                     Â