PID Controller
PID Controller
PID controller
    A         proportional–integral–derivative
    controller (PID controller) is a generic
    control     loop     feedback     mechanism
    (controller) widely used in industrial control
    systems – a PID is the most commonly used
    feedback controller. A PID controller
    calculates an "error" value as the difference
    between a measured process variable and a
    desired setpoint. The controller attempts to
    minimize the error by adjusting the process                        A block diagram of a PID controller
    The PID controller calculation (algorithm) involves three separate parameters, and is accordingly sometimes called
    three-term control: the proportional, the integral and derivative values, denoted P, I, and D. The proportional value
    determines the reaction to the current error, the integral value determines the reaction based on the sum of recent
    errors, and the derivative value determines the reaction based on the rate at which the error has been changing. The
    weighted sum of these three actions is used to adjust the process via a control element such as the position of a
    control valve or the power supply of a heating element. Heuristically, these values can be interpreted in terms of
    time: P depends on the present error, I on the accumulation of past errors, and D is a prediction of future errors,
    based on current rate of change.[2]
    By tuning the three constants in the PID controller algorithm, the controller can provide control action designed for
    specific process requirements. The response of the controller can be described in terms of the responsiveness of the
    controller to an error, the degree to which the controller overshoots the setpoint and the degree of system oscillation.
    Note that the use of the PID algorithm for control does not guarantee optimal control of the system or system
    stability.
    Some applications may require using only one or two modes to provide the appropriate system control. This is
    achieved by setting the gain of undesired control outputs to zero. A PID controller will be called a PI, PD, P or I
    controller in the absence of the respective control actions. PI controllers are fairly common, since derivative action is
    sensitive to measurement noise, whereas the absence of an integral value may prevent the system from reaching its
    target value due to the control action.
    Note: Due to the diversity of the field of control theory and application, many naming conventions for the relevant
    variables are in common use.
PID controller                                                                                                                 2
    where
                  ,     , and        are the contributions to the output from the PID controller from each of the three
            terms, as defined below.
    Proportional term
    The proportional term (sometimes
    called gain) makes a change to the
    output that is proportional to the current
    error value. The proportional response
    can be adjusted by multiplying the error
    by a constant Kp, called the proportional
    gain.
    where
                  : Proportional term of output
                 : Proportional gain, a tuning parameter
              : Error
             : Time or instantaneous time (the present)
    A high proportional gain results in a large change in the output for a given change in the error. If the proportional
    gain is too high, the system can become unstable (see the section on loop tuning). In contrast, a small gain results in
    a small output response to a large input error, and a less responsive (or sensitive) controller. If the proportional gain
    is too low, the control action may be too small when responding to system disturbances.
PID controller                                                                                                                    4
    Droop
    In the absence of disturbances, pure proportional control will not settle at its target value, but will retain a steady
    state error (droop) that is a function of the proportional gain and the process gain. Specifically, if the process gain –
    the long-term drift in the absence of control, such as cooling of a furnace towards room temperature – is denoted by
    G and assumed to be approximately constant in the error, then the droop is when this constant gain equals the
    proportional term of the output,         which is linear in the error,             so                 This is when the
    proportional term, which is pushing the parameter towards the set point, is exactly offset by the process gain, which
    is pulling the parameter away from the set point. If the process gain is down, as in cooling, then the steady state will
    be below the set point, hence the term "droop".
    Only the drift component (long-term average, zero-frequency component) of process gain matters for the droop –
    regular or random fluctuations above or below the drift cancel out. The process gain may change over time or in the
    presence of external changes, for example if room temperature changes, cooling may be faster or slower.
    Droop is proportional to process gain and inversely proportional to proportional gain, and is an inevitable defect of
    purely proportional control. Droop can be mitigated by adding a bias term (setting the setpoint above the true desired
    value), or corrected by adding an integration term (in a PI or PID controller), which effectively computes a bias
    adaptively.
    Despite the droop, both tuning theory and industrial practice indicate that it is the proportional term that should
    contribute the bulk of the output change.
    Integral term
    The contribution from the integral term
    (sometimes called reset) is proportional
    to both the magnitude of the error and
    the duration of the error. Summing the
    instantaneous      error    over    time
    (integrating the error) gives the
    accumulated offset that should have
    been     corrected     previously.   The
    accumulated error is then multiplied by
    the integral gain and added to the
    controller output. The magnitude of the
    contribution of the integral term to the
    overall control action is determined by
    the integral gain,     .
    where
                 : Integral term of output
                 : Integral gain, a tuning parameter
             : Error
            : Time or instantaneous time (the present)
PID controller                                                                                                                   5
    Derivative term
    The rate of change of the process error
    is calculated by determining the slope
    of the error over time (i.e., its first
    derivative with respect to time) and
    multiplying this rate of change by the
    derivative gain     . The magnitude of
    the contribution of the derivative term
    (sometimes called rate) to the overall
    control action is termed the derivative
    gain,    .
    where
                  : Derivative term of output
                 : Derivative gain, a tuning parameter
             : Error
            : Time or instantaneous time (the present)
    The derivative term slows the rate of change of the controller output and this effect is most noticeable close to the
    controller setpoint. Hence, derivative control is used to reduce the magnitude of the overshoot produced by the
    integral component and improve the combined controller-process stability. However, differentiation of a signal
    amplifies noise and thus this term in the controller is highly sensitive to noise in the error term, and can cause a
    process to become unstable if the noise and the derivative gain are sufficiently large. Hence an approximation to a
    differentiator with a limited bandwidth is more commonly used. Such a circuit is known as a Phase-Lead
    compensator.
PID controller                                                                                                                 6
    Summary
    The proportional, integral, and derivative terms are summed to calculate the output of the PID controller. Defining
         as the controller output, the final form of the PID algorithm is:
    Loop tuning
    Tuning a control loop is the adjustment of its control parameters (gain/proportional band, integral gain/reset,
    derivative gain/rate) to the optimum values for the desired control response. Stability (bounded oscillation) is a basic
    requirement, but beyond that, different systems have different behavior, different applications have different
    requirements, and some desiderata conflict. Further, some processes have a degree of non-linearity and so parameters
    that work well at full-load conditions don't work when the process is starting up from no-load; this can be corrected
    by gain scheduling (using different parameters in different operating regions). PID controllers often provide
    acceptable control even in the absence of tuning, but performance can generally be improved by careful tuning, and
    performance may be unacceptable with poor tuning.
    PID tuning is a difficult problem, even though there are only three parameters and in principle is simple to describe,
    because it must satisfy complex criteria within the limitations of PID control. There are accordingly various methods
    for loop tuning, and more sophisticated techniques are the subject of patents; this section describes some traditional
    manual methods for loop tuning.
    Stability
    If the PID controller parameters (the gains of the proportional, integral and derivative terms) are chosen incorrectly,
    the controlled process input can be unstable, i.e. its output diverges, with or without oscillation, and is limited only
    by saturation or mechanical breakage. Instability is caused by excess gain, particularly in the presence of significant
    lag.
    Generally, stability of response (the reverse of instability) is required and the process must not oscillate for any
    combination of process conditions and setpoints, though sometimes marginal stability (bounded oscillation) is
    acceptable or desired.
PID controller                                                                                                                                 7
    Optimum behavior
    The optimum behavior on a process change or setpoint change varies depending on the application.
    Two basic desiderata are regulation (disturbance rejection – staying at a given setpoint) and command tracking
    (implementing setpoint changes) – these refer to how well the controlled variable tracks the desired value. Specific
    criteria for command tracking include rise time and settling time. Some processes must not allow an overshoot of the
    process variable beyond the setpoint if, for example, this would be unsafe. Other processes must minimize the
    energy expended in reaching a new setpoint.
    Overview of methods
    There are several methods for tuning a PID loop. The most effective methods generally involve the development of
    some form of process model, then choosing P, I, and D based on the dynamic model parameters. Manual tuning
    methods can be relatively inefficient, particularly if the loops have response times on the order of minutes or longer.
    The choice of method will depend largely on whether or not the loop can be taken "offline" for tuning, and the
    response time of the system. If the system can be taken offline, the best tuning method often involves subjecting the
    system to a step change in input, measuring the output as a function of time, and using this response to determine the
    control parameters.
    Ziegler–Nichols                       Proven Method. Online method.                            Process upset, some trial-and-error, very
                                                                                                             aggressive tuning.
    Software Tools    Consistent tuning. Online or offline method. May include valve and sensor       Some cost and training involved.
                                   analysis. Allow simulation before downloading.
     Cohen-Coon                                Good process models.                               Some math. Offline method. Only good for
                                                                                                           first-order processes.
    Manual tuning
    If the system must remain online, one tuning method is to first set                    and    values to zero. Increase the
    until the output of the loop oscillates, then the            should be set to approximately half of that value for a "quarter
    amplitude decay" type response. Then increase                 until any offset is correct in sufficient time for the process.
    However, too much          will cause instability. Finally, increase            , if required, until the loop is acceptably quick
    to reach its reference after a load disturbance. However, too much                 will cause excessive response and overshoot.
    A fast PID loop tuning usually overshoots slightly to reach the setpoint more quickly; however, some systems cannot
    accept overshoot, in which case an over-damped closed-loop system is required, which will require a         setting
    significantly less than half that of the       setting causing oscillation.
PID controller                                                                                                                  8
    Ziegler–Nichols method
    Another heuristic tuning method is formally known as the Ziegler–Nichols method, introduced by John G. Ziegler
    and Nathaniel B. Nichols in the 1940s. As in the method above, the    and    gains are first set to zero. The P
    gain is increased until it reaches the ultimate gain,       , at which the output of the loop starts to oscillate.    and
    the oscillation period     are used to set the gains as shown:
                                                    Ziegler–Nichols method
                                              Control Type
P - -
PI -
PID
           In this modification, the setpoint is gradually moved from its old value to a newly specified value using a
           linear or first order differential ramp function. This avoids the discontinuity present in a simple step change.
    Setpoint weighting
           Setpoint weighting uses different multipliers for the error depending on which element of the controller it is
           used in. The error in the integral term must be the true control error to avoid steady-state control errors. This
           affects the controller's setpoint response. These parameters do not affect the response to load disturbances and
           measurement noise.
    History
    PID controllers date to 1890s governor design.[1] [5] PID controllers
    were subsequently developed in automatic ship steering. One of the
    earliest examples of a PID-type controller was developed by Elmer
    Sperry in 1911,[6] while the first published theoretical analysis of a PID
    controller was by Russian American engineer Nicolas Minorsky, in
    (Minorsky 1922). Minorsky was designing automatic steering systems
    for the US Navy, and based his analysis on observations of a
    helmsman, observing that the helmsman controlled the ship not only
    based on the current error, but also on past error and current rate of        PID theory developed by observing the action of
    change;[7] this was then made mathematical by Minorsky. The Navy                               helmsmen.
    ultimately did not adopt the system, due to resistance by personnel.
    Similar work was carried out and published by several others in the 1930s.
    Initially controllers were pneumatic, hydraulic, or mechanical, with electrical systems later developing, with wholly
    electrical systems developed following World War II.
    Minorsky's work
    In detail, Minorsky's work proceeded as follows.[8] His goal was
    stability, not general control, which significantly simplified the
    problem. While proportional control provides stability against small
    disturbances, it was insufficient for dealing with a steady disturbance,
    notably a stiff gale (due to droop), which required adding the integral
    term. Finally, the derivative term was added to improve control. Trials
    were carried out on the USS New Mexico, with the controller
    controlling the angular velocity (not angle) of the rudder. PI control
    yielded sustained yaw (angular error) of ±2°, while adding D yielded           Minorsky developed the PID on the USS New
                                                                                                    Mexico.
    yaw of ±1/6°, better than most helmsmen could achieve.
    The most significant improvement is to incorporate feed-forward control with knowledge about the system, and
    using the PID only to control error. Alternatively, PIDs can be modified in more minor ways, such as by changing
    the parameters (either gain scheduling in different use cases or adaptively modifying them based on performance),
    improving measurement (higher sampling rate, precision, and accuracy, and low-pass filtering if necessary), or
    cascading multiple PID controllers.
    PID controllers, when used alone, can give poor performance when the PID loop gains must be reduced so that the
    control system does not overshoot, oscillate or hunt about the control setpoint value. They also have difficulties in
    the presence of non-linearities, may trade off regulation versus response time, do not react to changing process
    behavior (say, the process changes after it has warmed up), and have lag in responding to large disturbances.
    Linearity
    Another problem faced with PID controllers is that they are linear, and in particular symmetric. Thus, performance
    of PID controllers in non-linear systems (such as HVAC systems) is variable. For example, in temperature control, a
    common use case is active heating (via a heating element) but passive cooling (heating off, but no cooling), so
    overshoot can only be corrected slowly – it cannot be forced downward. In this case the PID should be tuned to be
    overdamped, to prevent or reduce overshoot, though this reduces performance (it increases settling time).
    Noise in derivative
    A problem with the Derivative term is that small amounts of measurement or process noise can cause large amounts
    of change in the output. It is often helpful to filter the measurements with a low-pass filter in order to remove
    higher-frequency noise components. However, low-pass filtering and derivative control can cancel each other out, so
    reducing noise by instrumentation means is a much better choice. Alternatively, a nonlinear median filter may be
    used, which improves the filtering efficiency and practical performance [9] . In some case, the differential band can
    be turned off in many systems with little loss of control. This is equivalent to using the PID controller as a PI
    controller.
Improvements
    Feed-forward
    The control system performance can be improved by combining the feedback (or closed-loop) control of a PID
    controller with feed-forward (or open-loop) control. Knowledge about the system (such as the desired acceleration
    and inertia) can be fed forward and combined with the PID output to improve the overall system performance. The
    feed-forward value alone can often provide the major portion of the controller output. The PID controller can be used
    primarily to respond to whatever difference or error remains between the setpoint (SP) and the actual value of the
    process variable (PV). Since the feed-forward output is not affected by the process feedback, it can never cause the
    control system to oscillate, thus improving the system response and stability.
    For example, in most motion control systems, in order to accelerate a mechanical load under control, more force or
    torque is required from the prime mover, motor, or actuator. If a velocity loop PID controller is being used to control
    the speed of the load and command the force or torque being applied by the prime mover, then it is beneficial to take
    the instantaneous acceleration desired for the load, scale that value appropriately and add it to the output of the PID
    velocity loop controller. This means that whenever the load is being accelerated or decelerated, a proportional
    amount of force is commanded from the prime mover regardless of the feedback value. The PID loop in this
    situation uses the feedback information to effect any increase or decrease of the combined output in order to reduce
    the remaining difference between the process setpoint and the feedback value. Working together, the combined
    open-loop feed-forward controller and closed-loop PID controller can provide a more responsive, stable and reliable
    control system.
PID controller                                                                                                                 12
    Other improvements
    In addition to feed-forward, PID controllers are often enhanced through methods such as PID gain scheduling
    (changing parameters in different operating conditions), fuzzy logic or computational verb logic [10] [11] . Further
    practical application issues can arise from instrumentation connected to the controller. A high enough sampling rate,
    measurement precision, and measurement accuracy are required to achieve adequate control performance.
    Cascade control
    One distinctive advantage of PID controllers is that two PID controllers can be used together to yield better dynamic
    performance. This is called cascaded PID control. In cascade control there are two PIDs arranged with one PID
    controlling the set point of another. A PID controller acts as outer loop controller, which controls the primary
    physical parameter, such as fluid level or velocity. The other controller acts as inner loop controller, which reads the
    output of outer loop controller as set point, usually controlling a more rapid changing parameter, flowrate or
    acceleration. It can be mathematically proven that the working frequency of the controller is increased and the time
    constant of the object is reduced by using cascaded PID controller..
    where
                 is the integral time
                 is the derivative time
    In the ideal parallel form, shown in the controller theory section
PID controller                                                                                                               13
the gain parameters are related to the parameters of the standard form through and . This
    parallel form, where the parameters are treated as simple gains, is the most general and flexible form. However, it is
    also the form where the parameters have the least physical interpretation and is generally reserved for theoretical
    treatment of the PID controller. The standard form, despite being slightly more complex mathematically, is more
    common in industry.
    Having the PID controller written in Laplace form and having the transfer function of the controlled system makes it
    easy to determine the closed-loop transfer function of the system.
When this form is used it is easy to determine the closed loop transfer function.
If
Then
    Series/interacting form
    Another representation of the PID controller is the series, or interacting form
    where the parameters are related to the parameters of the standard form through
                             ,           , and
with
                         .
PID controller                                                                                                                 14
    This form essentially consists of a PD and PI controller in series, and it made early (analog) controllers easier to
    build. When the controllers later became digital, many kept using the interacting form.
    Discrete implementation
    The analysis for designing a digital implementation of a PID controller in a Microcontroller (MCU) or FPGA device
    requires the standard form of the PID controller to be discretised [12] . Approximations for first-order derivatives are
    made by backward finite differences. The integral term is discretised, with a sampling time       ,as follows,
    Thus, a velocity algorithm for implementation of the discretised PID controller in a MCU is obtained by
    differentiating    , using the numerical definitions of the first and second derivative and solving for and
    finally obtaining:
    Pseudocode
    Here is a simple software loop that implements the PID algorithm in its 'ideal, parallel' form:
    previous_error = 0
    integral = 0
    start:
      error = setpoint - actual_position
      integral = integral + (error*dt)
      derivative = (error - previous_error)/dt
      output = (Kp*error) + (Ki*integral) + (Kd*derivative)
      previous_error = error
      wait(dt)
      goto start
    See also
    •   Control theory
    •   Feedback
    •   Instability
    •   Oscillation
    •   PI controller
PID controller                                                                                                                                       15
    References
    [1] Bennett, Stuart (1993). A history of control engineering, 1930-1955. IET. p.  p. 48 (http:/ / books. google. com/ books?id=VD_b81J3yFoC&
        pg=PA48). ISBN 9-780863412998
    [2] Araki, M.. "PID Control" (http:/ / www. eolss. net/ ebooks/ Sample Chapters/ C18/ E6-43-03-03. pdf).
    [3] Ang, K.H., Chong, G.C.Y., and Li, Y. (2005). PID control system analysis, design, and technology, IEEE Trans Control Systems Tech, 13(4),
        pp.559-576. http:/ / eprints. gla. ac. uk/ 3817/
    [4] http:/ / saba. kntu. ac. ir/ eecd/ pcl/ download/ PIDtutorial. pdf
    [5] Bennett, Stuart (November 1984). "Nicholas Minorsky and the automatic steering of ships" (http:/ / ieeexplore. ieee. org/ iel5/ 37/ 24267/
        01104827. pdf?arnumber=1104827). IEEE Control Systems Magazine 4 (4): 10–15. doi:10.1109/MCS.1984.1104827. ISSN 0272-1708.
    [6] http:/ / www. building-automation-consultants. com/ building-automation-history. html
    [7] (Bennett 1993, p. 67 (http:/ / books. google. com/ books?id=VD_b81J3yFoC& pg=PA67))
    [8] Bennett, Stuart (June 1986). A history of control engineering, 1800-1930. IET. pp.  142–148 (http:/ / books. google. com/
        books?id=1gfKkqB_fTcC& pg=PA142). ISBN 978-0-86341047-5.
    [9] Li, Y. and Ang, K.H. and Chong, G.C.Y. (2006) PID control system analysis and design - Problems, remedies, and future directions. IEEE
        Control Systems Magazine, 26 (1). pp. 32-41. ISSN 0272-1708 (http:/ / eprints. gla. ac. uk/ 3815/ )
    [10] Yang, T. (June 2005). "Architectures of Computational Verb Controllers: Towards a New Paradigm of Intelligent Control". International
        Journal of Computational Cognition (Yang's Scientific Press) 3 (2): 74–101.
    [11] Liang, Y.-L.(et al) (2009). "Controlling fuel annealer using computational verb PID controllers". Proceedings of the 3rd international
        conference on Anti-Counterfeiting, security, and identification in communication (IEEE): 417–420.
    [12] http:/ / www. scribd. com/ doc/ 19070283/ Discrete-PI-and-PID-Controller-Design-and-Analysis-for-Digital-Implementation
    • Minorsky, Nicolas (1922). "Directional stability of automatically steered bodies". J. Amer. Soc. Naval Eng. 34
      (2): 280–309
    • Liptak, Bela (1995). Instrument Engineers' Handbook: Process Control. Radnor, Pennsylvania: Chilton Book
      Company. pp. 20–29. ISBN 0-8019-8242-1.
    • Tan, Kok Kiong; Wang Qing-Guo, Hang Chang Chieh (1999). Advances in PID Control. London, UK:
      Springer-Verlag. ISBN 1-85233-138-0.
    • Van, Doren, Vance J. (July 1, 2003). "Loop Tuning Fundamentals" (http://www.controleng.com/article/
      CA307745.html). Control Engineering (Red Business Information).
    • Sellers, David. "An Overview of Proportional plus Integral plus Derivative Control and Suggestions for Its
      Successful Application and Implementation" (http://web.archive.org/web/20070307161741/http://www.
      peci.org/library/PECI_ControlOverview1_1002.pdf) (PDF). Archived from the original (http://www.peci.
      org/library/PECI_ControlOverview1_1002.pdf) on March 7, 2007. Retrieved 2007-05-05.
    • Graham, Ron (10/03/2005). "FAQ on PID controller tuning" (http://web.archive.org/web/20050206113949/
      www.tcnj.edu/~rgraham/PID-tuning.html). Retrieved 2009-01-05.
External links
    PID tutorials
    • PID Tutorial (http://www.engin.umich.edu/group/ctm/PID/PID.html)
    • P.I.D. Without a PhD (http://igor.chudov.com/manuals/Servo-Tuning/PID-without-a-PhD.pdf): a beginner's
      guide to PID loop theory with sample programming code
    • What's All This P-I-D Stuff, Anyhow? (http://www.elecdesign.com/Articles/ArticleID/6131/6131.html)
      Article in Electronic Design
    • Shows how to build a PID controller with basic electronic components (http://asl.epfl.ch/research/projects/
      VtolIndoorFlying/rapports/rapportSemStauffer.pdf) (pg. 22)
    • Virtual PID Controller Laboratory (http://www.pidlab.com)
       • PID Design & Tuning (http://www.pidlab.com/en/pid-design-and-tuning)
    • Online PID Tuning applet from University of Texas Control Group (http://www.che.utexas.edu/course/
      che360/documents/tuner/Process_Tuner.html)
PID controller                                                                                          16
    License
    Creative Commons Attribution-Share Alike 3.0 Unported
    http:/ / creativecommons. org/ licenses/ by-sa/ 3. 0/