A PID controller is the workhorse of automatic control: it looks at the error between where a system is and where it should be, and reacts with three terms — Proportional (react to the error now), Integral (react to the error accumulated over time), and Derivative (react to how fast the error is changing).
The integral term is what erases stubborn, lingering error — the kind a purely proportional controller can never quite close. But it has a blind spot: it keeps summing the error forever, with no idea that the valve, motor or heater it commands can only push so hard.
When the controller asks for more than the actuator can deliver, the actuator saturates — it's already at 100% and can't go higher — while the integral term, oblivious, keeps climbing. That silent buildup is called integral windup, and it is one of the most common ways a real PID loop goes wrong.
Comments
Loading comments...