proportionalintegralderivat
Proportionalintegralderivat, often called a PID controller, is a feedback control mechanism used to regulate dynamic systems. It combines three terms—proportional, integral, and derivative—each acting on the error e(t) = setpoint minus process variable. The controller output is u(t) = Kp e(t) + Ki ∫ e(τ) dτ + Kd de/dt.
The proportional term provides immediate correction proportional to present error, the integral term accumulates past errors
In discrete-time implementations with sampling interval Δt, the equation becomes u[k] = Kp e[k] + Ki Σ e[i] Δt
PID control is versatile and widely used in process control, robotics, motor control, and temperature regulation.
Practical concerns include anti-windup to prevent integral saturation when actuators saturate, derivative filtering to reduce noise