Engineering:Ziegler–Nichols method

From HandWiki
Short description: Method of tuning a PID controller
Main page: PID controller

The Ziegler–Nichols tuning method is a heuristic method of tuning a PID controller. It was developed by John G. Ziegler and Nathaniel B. Nichols. It is performed by setting the I (integral) and D (derivative) gains to zero. The "P" (proportional) gain, Kp is then increased (from zero) until it reaches the ultimate gain Ku, at which the output of the control loop has stable and consistent oscillations. Ku and the oscillation period Tu are then used to set the P, I, and D gains depending on the type of controller used and behaviour desired:

Ziegler–Nichols method[1]
Control Type Kp Ti Td Ki Kd
P 0.5Ku
PI 0.45Ku 0.83Tu 0.54Ku/Tu
PD 0.8Ku 0.125Tu 0.10KuTu
classic PID[2] 0.6Ku 0.5Tu 0.125Tu 1.2Ku/Tu 0.075KuTu
Pessen Integral Rule[2] 0.7Ku 0.4Tu 0.15Tu 1.75Ku/Tu 0.105KuTu
some overshoot[2] 0.33Ku 0.50Tu 0.33Tu 0.66Ku/Tu 0.11KuTu
no overshoot[2] 0.20Ku 0.50Tu 0.33Tu 0.40Ku/Tu 0.066KuTu

The ultimate gain (Ku) is defined as 1/M, where M = the amplitude ratio, Ki=Kp/Ti and Kd=KpTd.

These 3 parameters are used to establish the correction u(t) from the error e(t) via the equation:

u(t)=Kp(e(t)+1Ti0te(τ)dτ+Tdde(t)dt)

which has the following transfer function relationship between error and controller output:

u(s)=Kp(1+1Tis+Tds)e(s)=Kp(TdTis2+Tis+1Tis)e(s)

Evaluation

The Ziegler–Nichols tuning (represented by the 'Classic PID' equations in the table above) creates a "quarter wave decay". This is an acceptable result for some purposes, but not optimal for all applications.

This tuning rule is meant to give PID loops best disturbance rejection.[2]

It yields an aggressive gain and overshoot[2] – some applications wish to instead minimize or eliminate overshoot, and for these this method is inappropriate. In this case, the equations from the row labelled 'no overshoot' can be used to compute appropriate controller gains.

References