Derivative Control Action

As the name suggests, a derivative parameter generates a control action by calculating the rate of change of error. A derivative action is thus generated by multiplying the value of rate of change of error with a derivative gain $ K_d$. Mathematical representation of the same is given below.

$\displaystyle D$ $\displaystyle =K_d\frac{d}{dt}e(t)$ (5.3)

where,
$ D$ is the derivative output
$ K_d$ is the derivative gain ( $ K_d=K_p / \tau _d$, where, $ \tau _d$ is the derivative time)

The derivative action slows down the rate of change of the controller output. A derivative controller is quite useful when the error is continuously changing with time. One should, however, avoid using it alone. This is because there is no output when the error is zero and when the rate of change of error is constant.
When all the above control actions are summed up and used together, the final equation becomes

$\displaystyle PID$ $\displaystyle =K_pe(t)+K_i\int_0^t e(t)dt+K_d\frac{d}{dt}e(t)$ (5.4)

The above equation represents an ideal form of PID controller. This means that the integral controller can be used independently. However, it is not a good decision since, the integral action begins only after the error exits for some amount of time. The proportional controller however begins as soon as the error starts existing. Hence, the integral controller is often used in conjunction with a proportional controller. This is popularly known as PI controller and the equation for Proportional Integral action becomes,

$\displaystyle PI$ $\displaystyle =K_pe(t)+\left(K_p/\tau _i\right)\int_0^te(t)dt$ (5.5)
  $\displaystyle =K_p\left\{e(t)+\left(1/\tau _i\right)\int_0^te(t)dt\right\}$ (5.6)

Similarly, as discussed before, independent use of derivative controller is also not desirable. Moreover, if the process contains high frequency noise then the derivative action will tend to amplify the noise. Hence, derivative controller is also used in conjunction with Proportional or Proportional Integral controller popularly known as PD or PID, respectively. Therefore the equation for Proportional Derivative action becomes,

$\displaystyle PD$ $\displaystyle =K_pe(t)+K_p\tau _d\frac{d}{dt}e(t)$ (5.7)
  $\displaystyle =K_p\left\{e(t)+\tau _d\frac{d}{dt}e(t)\right\}$ (5.8)

Finally, writing the equation for PID controller,

$\displaystyle PID$ $\displaystyle =K\left\{e(t)+\frac 1{\tau _i}\int_0^te(t)dt+\tau _d\frac{d}{dt}e(t)\right\}$ (5.9)

rokade 2017-04-23