Javatpoint Logo
Javatpoint Logo

PID Controller

PID controller is a combination of the Proportional, Integral, and Derivative control modes. It is the most powerful controller action that is a combination of all three modes.

PID controller is based on the control loop feedback mechanism. It is used in various applications that require modulated control in a continuous form. The feedback control system improves stability, meet performance specifications, improve disturbance rejection, etc.

PID controller specifies how the performance specifications are affected by adjusting the three controllers' gain (Proportional, Integral, and Derivative).

Let's first discuss what controllers are.

Controllers

The controllers decide the kind of actions taken in response to an error. A controller generally uses the difference between set point (SP) and measurement signal to develop the output signal.

A controller serves as the front end in the closed-loop control system operation. The block diagram representation of a closed-loop system is shown below:

PID Controller

The three operations are responsible for achieving the desired control action, which is listed below:

  • Measurement
    It measures the output value of the controller variables.
  • Decision
    It determines the error particularly, SetPoint (SP) - measured value (MV), and uses it to form the control action.
  • Manipulation
    The control action is used to manipulate a variable in order to reduce the error.

Mathematical Expression of PID Controller

The analytical expression of the PID Controller can be written as:

PID Controller

Taking the Laplace transform of the above equation, we get:

PID Controller

The three terms used in the expression (Kp, Ki, and Kd) are the gain of the Proportional controller, Integral controller, and the Derivative controller. We know that the PID controller is a combination of these three controllers. Hence, the equation formed is the combination of the proportional gain, integral gain, and derivative gain.

Let's discuss the three controllers in detail.

Proportional Controller

The output in the proportional controller is directly proportional to the input. It is considered as the most common controller action where the output is directly proportional to the input. Here, the input is the error signal.

The basic equation of the proportional controller is:

Error = Set point (r) - measured value (c)

m=Kpe+mo

Where,

m is the controller output

Kp is the proportional gain constant

mo is the controller output with no error percentage

The transfer function can be written as:

Gc(s) = Kp

The controller's output depends only on the size of the error at the instant of the concerned time. The block diagram of the system is shown below:

PID Controller

The constant gain tends to exit only over a certain range of errors. Such a range is called a proportional band. It is given by:

Kp = 100/Proportional Band (PB)

Advantages

The advantages of the proportional controller are listed below:

  • Proportion Controller improves the response of the system.
  • It helps to reduce the steady state error of the system.

Characteristics of Proportional Controller

The characteristics are listed below:

  • The steady state action of the proportional controller can be reduced by selecting a large value the gain K. But, the high gain tends to destabilize the higher order plants.
  • The increase in the proportional gain leads to the decrease of the offset error.
  • The increasing gain of the proportional controller causes the reduction of the closed loop time constant. It further speeds up the system response.

Integral Controller

Integral control is used when we want the controller action to correct from any steady and continuing offset to the desired reference signal.

The block diagram of the Integral Controller is shown below:

PID Controller

The steady state error cannot be 0 until the proportional gain is not equal to infinity. But, it is practically impossible. So, without the excessive increase of Kp, the Integral Controller can increase the controller output.

The output will be:

PID Controller

Let us assume the output of the controller as:

PID Controller

The steady state error of the Integral controller is 0 when the value of Kp approaches to infinity, as shown below:

PID Controller

From the above statement, we can conclude the following:

  • The steady state error is 0, with the integrator (1/s) as the controller. 1/s is the input as R(s), as:
PID Controller
  • The order of the system has been increased from one to two.
  • For higher order systems, the addition of the extra pole may lead to instability.

Thus, we can say that:

The addition of an integrator to the system or the pole at the origin reduces the steady-state error to zero. But, it may not work for higher-order systems.

The Integral controller's main advantage is the increase in the system type by one, as discussed above.

Derivative Controller

It is used when the controller needs to have the rate of change of the error (e) signal in control action. It has the derivative form, where the controller output is proportional to the error (e) with time. It is expressed as:

Output = Kd de/dt

Where,

Kd is the derivative gain.

The output of the derivative controller does not depend on the past or present error. Instead, it depends on the rate of the changing error. A derivative controller can provide a large corrective action before a large error occurs.

If the error is constant, corrective action cannot take place. The derivative controller needs care for its operation. It works with a small gain. A rapid change of error in the derivative controller can cause large or sudden changes in the controller output.

Characteristics of the Derivative Controller

  • The controller output is zero if the error is constant or zero.
  • It gives an output if there is an error changing in time.

Let's consider an example.

Example:

Consider the system with G(s) = 1/Js^2 as a rotational element with J as the moment of Inertia.

It depicts that the poles lies on the imaginary axis if we increase the gain from zero to infinity. The response of the system in this case is purely oscillatory.

Proportional-Derivative Controller

The analytical expression formed contains the gain of the two controllers, Proportional and Derivative. It comprises of gain constant, as shown below:

PID Controller

The Proportional-Derivative controller is used to remove the oscillations that occurred in the Derivative controller. It is also allowing a higher proportional gain setting.

Let's consider the block diagram of PD controller.

PID Controller

Characteristics

The characteristics of the Proportional Derivative controller are as follows:

  • The derivative term in the above equation acts on the rate of change of the error signal. The output of the PD controller is proportional to the rate of change of the error signal.
  • The derivative term anticipates the large overshoot of the system when the rate of change of error is high and takes corrective action.

Proportional Integral Controller

The proportional Integral controller is generally used in slow-to-moderate speed processes. We know that an Integral controller tends to reduce the relative stability of the system. It can be overcome by adding a proportional controller to it.

The block diagram of the Integral controller is shown below:

PID Controller

Thus, the Integral controller is frequently combined with the proportional mode to provide the automatic next action that eliminates the proportional offset. The output of the PI controller is the combination of their respective gain constants, as shown below:

PID Controller

The PI controller is also used on processes with a large load change when the proportional mode cannot reduce the offset to the desired level. The proportional offset is eliminated by the reset action provided by the Integral controller.

Applications of PID Controllers

PID controllers are used in various applications to regulate different process variables, such as temperature, pressure, and speed. Let's discuss some common applications of the PID controllers.

  • Temperature Control
    PID Controller is a part of the temperature control system. It accepts temperature from the input, such as a thermocouple or temperature sensor, and compares the value to the desired set point or actual temperature value. The output is further provided to the control element. The applications are Baking, heat treatment of metals, etc.
  • Converters
    PID controllers are used as converters in the applications of power electronics. The output is controlled in order to get the maximum power output. The applications are Brushless DC Motor, etc.

Advantages of PID Controllers

The combination of the three controllers gives the perfect tracking of the system.

Let's consider some advantages of the PID controllers.

  • The integral controller helps in rejecting the constant disturbance inputs.
  • It helps to stabilize the second-order system.
  • It has the perfect tracking of the step signals because of the integral control.
  • We can place the poles through the multiple degrees of freedom offered by the Proportional Integral Derivative Controller.

Next TopicSolder





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA