FACTOID # 76: The United States puts 0.7 % of its population in Prison - a vastly higher percentage than any other nation.
 
 Home   Encyclopedia   Statistics   Countries A-Z   Flags   Maps   Education   Forum   FAQ   About 
 
WHAT'S NEW
RECENT ARTICLES
More Recent Articles »
 

SEARCH ALL

FACTS & STATISTICS   

Search encyclopedia, statistics and forums:

 

 

(* = Graphable)

 

 


Encyclopedia > PID controller

A proportional–integral–derivative controller (PID controller) is a generic control loop feedback mechanism widely used in industrial control systems. A PID controller attempts to correct the error between a measured process variable and a desired setpoint by calculating and then outputting a corrective action that can adjust the process accordingly. A control system is a device or set of devices to manage, command, direct or regulate the behaviour of other devices or systems. ... In cybernetics and control theory, feedback is a process whereby some proportion or in general, function, of the output signal of a system is passed (fed back) to the input. ... A control system is a device or set of devices to manage, command, direct or regulate the behaviour of other devices or systems. ... A process variable is the current status of a process under control. ... Setpoint is the target value that an automatic control system, for example PID controller, will aim to reach. ...


The PID controller calculation (algorithm) involves three separate parameters; the Proportional, the Integral and Derivative values. The Proportional value determines the reaction to the current error, the Integral determines the reaction based on the sum of recent errors and the Derivative determines the reaction to 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. Flowcharts are often used to graphically represent algorithms. ...


By "tuning" the three constants in the PID controller algorithm the PID 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. Optimal control theory, a generalization of the calculus of variations, is a mathematical optimization method for deriving control policies. ...


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 particularly common, since derivative action is very sensitive to measurement noise, and the absence of an integral value may prevent the system from reaching its target value due to the control action.

A block diagram of a PID controller
A block diagram of a PID controller

Note: Due to the diversity of the field of control theory and application, many naming conventions for the relevant variables are in common use. Image File history File links Download high-resolution version (1604x738, 46 KB) File history Legend: (cur) = this is the current file, (del) = delete this old version, (rev) = revert to this old version. ... Image File history File links Download high-resolution version (1604x738, 46 KB) File history Legend: (cur) = this is the current file, (del) = delete this old version, (rev) = revert to this old version. ...

Contents

Control loop basics

A familiar example of a control loop is the action taken to keep one's shower water at the ideal temperature, which typically involves the mixing of two process streams, cold and hot water. The person feels the water to estimate its temperature. Based on this measurement they perform a control action: use the cold water tap to adjust the process. The person would repeat this input-output control loop, adjusting the hot water flow until the process temperature stabilized at the desired value. For other uses, see Shower (disambiguation). ...


Feeling the water temperature is taking a measurement of the process value or process variable (PV). The desired temperature is called the setpoint (SP). The output from the controller and input to the process (the tap position) is called the manipulated variable (MV). The difference between the measurement and the setpoint is the error (e), too hot or too cold and by how much.


As a controller, one decides roughly how much to change the tap position (MV) after one determines the temperature (PV), and therefore the error. This first estimate is the equivalent of the proportional action of a PID controller. The integral action of a PID controller can be thought of as gradually adjusting the temperature when it is almost right. Derivative action can be thought of as noticing the water temperature is getting hotter or colder, and how fast, and taking that into account when deciding how to adjust the tap.


Making a change that is too large when the error is small is equivalent to a high gain controller and will lead to overshoot. If the controller were to repeatedly make changes that were too large and repeatedly overshoot the target, this control loop would be termed unstable and the output would oscillate around the setpoint in either a constant, growing, or decaying sinusoid. A human would not do this because we are adaptive controllers, learning from the process history, but PID controllers do not have the ability to learn and must be set up correctly. Selecting the correct gains for effective control is known as tuning the controller. A sine wave or sinusoid is a waveform whose graph is identical to the generalized sine function y = Asin[ω(x − α)] + C where A is the amplitude, ω is the angular frequency (2π/P where P is the wavelength), α is the phase shift, and C is the vertical offset. ... When the parameters of a system are slowly time-varying or uncertain, we need a control law that adapts itself under such conditions to give reliable performance. ...


If a controller starts from a stable state at zero error (PV = SP), then further changes by the controller will be in response to changes in other measured or unmeasured inputs to the process that impact on the process, and hence on the PV. Variables that impact on the process other than the MV are known as disturbances and generally controllers are used to reject disturbances and/or implement setpoint changes. Changes in feed water temperature constitute a disturbance to the shower process.


In theory, a controller can be used to control any process which has a measurable output (PV), a known ideal value for that output (SP) and an input to the process (MV) that will affect the relevant PV. Controllers are used in industry to regulate temperature, pressure, flow rate, chemical composition, speed and practically every other variable for which a measurement exists. Automobile cruise control is an example of a process which utilizes automated control. For other uses, see Temperature (disambiguation). ... This article is about pressure in the physical sciences. ... In fluid dynamics, the rate of fluid flow is the volume of fluid which passes through a given area per unit time. ... A chemical substance is any material substance used in or obtained by a process in chemistry: A chemical compound is a substance consisting of two or more chemical elements that are chemically combined in fixed proportions. ... This article does not cite any references or sources. ... Cruise control (sometimes known as speed control or Autocruise) is a system to automatically control the speed of an automobile. ...


Due to their long history, simplicity, well grounded theory and simple setup and maintenance requirements, PID controllers are the controllers of choice for many of these applications.


PID controller theory

Note: This section describes the ideal parallel or non-interacting form of the PID controller. For other forms please see the Section "Alternative notation and PID forms".


The PID control scheme is named after its three correcting terms, whose sum constitutes the manipulated variable (MV). Hence:

mathrm{MV(t)}=,P_{mathrm{out}} + I_{mathrm{out}} + D_{mathrm{out}}

where Pout, Iout, and Dout are the contributions to the output from the PID controller from each of the three terms, as defined below.


Proportional term

The proportional term 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.


The proportional term is given by:

P_{mathrm{out}}=K_p,{e(t)}

Where

  • Pout: Proportional output
  • Kp: Proportional Gain, a tuning parameter
  • e: Error = SPPV
  • t: Time or instantaneous time (the present)
Plot of PV vs. time, for various values of Kp
Plot of PV vs. time, for various values of Kp

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. Image File history File links No higher resolution available. ... Image File history File links No higher resolution available. ...


In the absence of disturbances, pure proportional control will not settle at its target value, but will retain a steady state error that is a function of the proportional gain and the process gain. Despite the steady-state offset, 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 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, Ki.


The integral term is given by:

I_{mathrm{out}}=K_{i}int_{0}^{t}{e(tau)},{dtau}
Plot of PV vs. time, for various values of Ki
Plot of PV vs. time, for various values of Ki

Where Image File history File links No higher resolution available. ... Image File history File links No higher resolution available. ...

  • Iout: Integral output
  • Ki: Integral Gain, a tuning parameter
  • e: Error = SPPV
  • τ: Time in the past contributing to the integral response

The integral term (when added to the proportional term) accelerates the movement of the process towards setpoint and eliminates the residual steady-state error that occurs with a proportional only controller. However, since the integral term is responding to accumulated errors from the past, it can cause the present value to overshoot the setpoint value (cross over the setpoint and then create a deviation in the other direction). For further notes regarding integral gain tuning and controller stability, see the section on loop tuning.


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 Kd. The magnitude of the contribution of the derivative term to the overall control action is termed the derivative gain, Kd.


The derivative term is given by:

D_{mathrm{out}}=K_dfrac{de}{dt}
Plot of PV vs. time, for various values of Kd
Plot of PV vs. time, for various values of Kd

Where Image File history File links No higher resolution available. ... Image File history File links No higher resolution available. ...

  • Dout: Derivative output
  • Kd: Derivative Gain, a tuning parameter
  • e: Error = SPPV
  • t: 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.


Summary

The output from the three terms, the proportional, the integral and the derivative terms are summed to calculate the output of the PID controller. Defining u(t) as the controller output, the final form of the PID algorithm is:

mathrm{u(t)}=mathrm{MV(t)}=K_p{e(t)} + K_{i}int_{0}^{t}{e(tau)},{dtau} + K_{d}frac{de}{dt}

and the tuning parameters are

  1. Kp: Proportional Gain - Larger Kp typically means faster response since the larger the error, the larger the Proportional term compensation. An excessively large proportional gain will lead to process instability and oscillation.
  2. Ki: Integral Gain - Larger Ki implies steady state errors are eliminated quicker. The trade-off is larger overshoot: any negative error integrated during transient response must be integrated away by positive error before we reach steady state.
  3. Kd: Derivative Gain - Larger Kd decreases overshoot, but slows down transient response and may lead to instability due to signal noise amplification in the differentiation of the error.

Loop tuning

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. 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. Oscillation is the variation, typically in time, of some measure about a central value (often a point of equilibrium) or between two or more different states. ...


The optimum behavior on a process change or setpoint change varies depending on the application. 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. Generally, stability of response (the reverse of instability) is required and the process must not oscillate for any combination of process conditions and setpoints. 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 section describes some traditional manual methods for loop tuning. Instability in systems is generally characterized by some of the outputs or internal states growing without bounds. ...


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.


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.

Choosing a Tuning Method
Method Advantages Disadvantages
Manual Tuning No math required. Online method. Requires experienced personnel.
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 analysis. Allow simulation before downloading. Some cost and training involved.
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 the I and D values to zero. Increase the P until the output of the loop oscillates, then the P should be left set to be approximately half of that value for a "quarter amplitude decay" type response. Then increase D until any offset is correct in sufficient time for the process. However, too much D will cause instability. Finally, increase I, if required, until the loop is acceptably quick to reach its reference after a load disturbance. However, too much I 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 P setting significantly less than half that of the P setting causing oscillation.

Effects of increasing parameters
Parameter Rise Time Overshoot Settling Time S.S. Error
Kp Decrease Increase Small Change Decrease
Ki Decrease Increase Increase Eliminate
Kd Small Decrease Decrease Decrease None

Ziegler–Nichols method

Another tuning method is formally known as the Ziegler–Nichols method, introduced by John G. Ziegler and Nathaniel B. Nichols. As in the method above, the I and D gains are first set to zero. The "P" gain is increased until it reaches the "critical gain" Kc at which the output of the loop starts to oscillate. Kc and the oscillation period Pc are used to set the gains as shown:

Ziegler–Nichols method
Control Type Kp Ki Kd
P 0.5·Kc - -
PI 0.45·Kc 1.2Kp / Pc -
PID 0.6·Kc 2Kp / Pc KpPc / 8

PID tuning software

Most modern industrial facilities no longer tune loops using the manual calculation methods shown above. Instead, PID tuning and loop optimization software are used to ensure consistent results. These software packages will gather the data, develop process models, and suggest optimal tuning. Some software packages can even develop tuning by gathering data from reference changes.


Mathematical PID loop tuning induces an impulse in the system, and then uses the controlled system's frequency response to design the PID loop values. In loops with response times of several minutes, mathematical loop tuning is recommended, because trial and error can literally take days just to find a stable set of loop values. Optimal values are harder to find. Some digital loop controllers offer a self-tuning feature in which very small setpoint changes are sent to the process, allowing the controller itself to calculate optimal tuning values.


Other formulas are available to tune the loop according to different performance criteria.


Modifications to the PID algorithm

The basic PID algorithm presents some challenges in control applications that have been addressed by minor modifications to the PID form.


One common problem resulting from the ideal PID implementations is integral windup. This can be addressed by: Integral windup refers to the situation in a PID controller where the integral, or reset action continues to integrate (ramp) indefinitely. ...

  • Initializing the controller integral to a desired value
  • Disabling the integral function until the PV has entered the controllable region
  • Limiting the time period over which the integral error is calculated
  • Preventing the integral term from accumulating above or below pre-determined bounds

Many PID loops control a mechanical device (for example, a valve). Mechanical maintenance can be a major cost and wear leads to control degradation in the form of either stiction or a deadband in the mechanical response to an input signal. The rate of mechanical wear is mainly a function of how often a device is activated to make a change. Where wear is a significant concern, the PID loop may have an output deadband to reduce the frequency of activation of the output (valve). This is accomplished by modifying the controller to hold its output steady if the change would be small (within the defined deadband range). The calculated output must leave the deadband before the actual output will change. Stiction is an informal portmanteau of the term static friction (μs), perhaps also influenced by the verb stick. Two solid objects pressing against each other (but not sliding) will require some threshold of force parallel to the surface of contact in order to overcome static cohesion. ... attention Deadband is an area of a signal range or band where no action occurs (the system is dead). ... attention Deadband is an area of a signal range or band where no action occurs (the system is dead). ...


The proportional and derivative terms can produce excessive movement in the output when a system is subjected to an instantaneous "step" increase in the error, such as a large setpoint change. In the case of the derivative term, this is due to taking the derivative of the error, which is very large in the case of an instantaneous step change. As a result, some PID algorithms incorporate the following modifications:

  • derivative of output In this case the PID controller measures the derivative of the output quantity, rather than the derivative of the error. The output is always continuous (i.e., never has a step change). For this to be effective, the derivative of the output must have the same sign as the derivative of the error.
  • setpoint ramping 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.

In mathematics, a continuous function is one in which arbitrarily small changes in the input produce arbitrarily small changes in the output. ...

Limitations of PID control

While PID controllers are applicable to many control problems, they can perform poorly in some applications.


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. 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 then 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 other uses, see Feedback (disambiguation). ... Feed-forward is a term describing a kind of system which reacts to changes in its environment, usually to maintain some desired state of the system. ...


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.


Another problem faced with PID controllers is that they are linear. Thus, performance of PID controllers in non-linear systems (such as HVAC systems) is variable. Often PID controllers are enhanced through methods such as PID gain scheduling or fuzzy logic. 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. A HVAC control system is a computerized system for climate control in buildings. ... For the Super Furry Animals album, see Fuzzy Logic (album). ...


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, 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. This article is about noise as in sound. ... A low-pass filter is a filter that passes low frequencies but attenuates (or reduces) frequencies higher than the cutoff frequency. ...


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 proved that the working frequency of the controller is increased and the time constant of the object is reduced by using cascaded PID controller.[vague]


Physical implementation of PID control

In the early history of automatic process control the PID controller was implemented as a mechanical device. These mechanical controllers used a lever, spring and a mass and were often energized by compressed air. These pneumatic controllers were once the industry standard. Leverage redirects here. ... For other uses, see Spring. ... For other uses, see Mass (disambiguation). ... Pneumatics, from the Greek πνευματικός (pneumatikos, coming from the wind) is the use of pressurized air in science and technology. ...


Electronic analog controllers can be made from a solid-state or tube amplifier, a capacitor and a resistance. Electronic analog PID control loops were often found within more complex electronic systems, for example, the head positioning of a disk drive, the power conditioning of a power supply, or even the movement-detection circuit of a modern seismometer. Nowadays, electronic controllers have largely been replaced by digital controllers implemented with microcontrollers or FPGAs. It has been suggested that this article or section be merged with Analog electronics. ... Assorted discrete transistors A transistor is a semiconductor device, commonly used as an amplifier or an electrically controlled switch. ... Structure of a vacuum tube diode Structure of a vacuum tube triode In electronics, a vacuum tube, electron tube, or (outside North America) thermionic valve or just valve, is a device used to amplify, switch or modify a signal by controlling the movement of electrons in an evacuated space. ... Op-amp ICs (some single, some dual) in 8-pin dual in-line packages (DIPs) An operational amplifier, usually referred to as an op-amp for brevity, is a DC-coupled high-gain electronic voltage amplifier with differential inputs[1] and, usually, a single output. ... See Capacitor (component) for a discussion of specific types. ... Electrical resistance is a measure of the degree to which an electrical component opposes the passage of current. ... Disk Drive is the afternoon show on CBC Radio Two. ... A wall wart style variable DC power supply with its cover removed. ... Seismometer is of Greek origin and comes from Seism - the shakes and Meteo - I measure are instruments that measure and record motions of the ground, including those of seismic waves generated by earthquakes, nuclear explosions, and other seismic sources. ... A microcontroller is a computer-on-a-chip optimised to control devices. ... A field-programmable gate array or FPGA is a gate array that can be reprogrammed after it is manufactured, rather than having its programming fixed during the manufacturing — a programmable logic device. ...


Most modern PID controllers in industry are implemented in software in programmable logic controllers (PLCs) or as a panel-mounted digital controller. Software implementations have the advantages that they are relatively cheap and are flexible with respect to the implementation of the PID algorithm. Computer software (or simply software) refers to one or more computer programs and data held in the storage of a computer for some purpose. ... PLC & input/output arrangements A programmable logic controller (PLC), or programmable controller is a digital computer used for automation of industrial processes, such as control of machinery on factory assembly lines. ...


Alternative nomenclature and PID forms

Pseudocode

Here is a simple software loop that implements the PID algorithm:

 previous_error = 0 start: error = setpoint - actual_position P = Kp * error I = I + Ki * error * dt D = (Kd / dt) * (error - previous_error) output = P + I + D previous_error = error wait(dt) goto start 

Ideal versus standard PID form

The form of the PID controller most often encountered in industry, and the one most relevant to tuning algorithms is the "standard form". In this form the Kp gain is applied to the Iout, and Dout terms, yielding:

mathrm{MV(t)}=K_pleft(,{e(t)} + frac{1}{T_i}int_{0}^{t}{e(tau)},{dtau} + T_dfrac{de}{dt}right)

Where

Ti is the Integral Time
Td is the Derivative Time

In the ideal parallel form, shown in the Controller Theory section

mathrm{MV(t)}=K_p{e(t)} + K_iint_{0}^{t}{e(tau)},{dtau} + K_dfrac{de}{dt}

the gain parameters are related to the parameters of the standard form through K_i = frac{K_p}{T_i} and Kd = KpTd. 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.


Laplace form of the PID controller

Sometimes it is useful to write the PID regulator in Laplace transform form: In the branch of mathematics called functional analysis, the Laplace transform, , is a linear operator on a function f(t) (original) with a real argument t (t ≥ 0) that transforms it to a function F(s) (image) with a complex argument s. ...

G(s)=K_p + frac{K_i}{s} + K_d{s}

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.


Series / interacting form

Another representation of the PID controller is the series, or "interacting" form. 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.


See also

For control theory in psychology and sociology, see control theory (sociology). ... For other uses, see Feedback (disambiguation). ... Instability in systems is generally characterized by some of the outputs or internal states growing without bounds. ... Oscillation is the variation, typically in time, of some measure about a central value (often a point of equilibrium) or between two or more different states. ...

External links

PID tutorials

Simulations

Special topics and PID control applications

References

Year 2007 (MMVII) was a common year starting on Monday of the Gregorian calendar in the 21st century. ... is the 125th day of the year (126th in leap years) in the Gregorian calendar. ... Year 2007 (MMVII) was a common year starting on Monday of the Gregorian calendar in the 21st century. ... is the 125th day of the year (126th in leap years) in the Gregorian calendar. ...

  Results from FactBites:
 
PID controller - Wikipedia, the free encyclopedia (3149 words)
PID controllers do not require advanced mathematics to design and can be easily adjusted (or "tuned") to the desired application, unlike more complicated control algorithms based on optimal control theory.
This is equivalent to using the PID controller as a PI controller.
Electronic analog PID control loops were often found within more complex electronic systems, for example, the head positioning of a disk drive, the power conditioning of a power supply, or even the movement-detection circuit of a modern seismometer.
Control theory - Wikipedia, the free encyclopedia (2662 words)
Controllability and observability are main issues in the analysis of a system before deciding the best control strategy to be applied.
Controllability is related to the possibility of forcing the system into a particular state by using an appropriate control signal.
Optimal control is a particular control technique in which the control signal optimizes a certain "cost index": for example, in the case of a satellite, the jet thrusts needed to bring it to desired trajectory that consume the least amount of fuel.
  More results at FactBites »

 

COMMENTARY     


Share your thoughts, questions and commentary here
Your name
Your location
Your comments
Please enter the 5-letter protection code


Lesson Plans | Student Area | Student FAQ | Reviews | Press Releases |  Feeds | Contact
The Wikipedia article included on this page is licensed under the GFDL.
Images may be subject to relevant owners' copyright.
All other elements are (c) copyright NationMaster.com 2003-5. All Rights Reserved.
Usage implies agreement with terms.