|
PID Control 1.0
Discrete time implementation of P, PI, PD, PID. Including derivative filter, integral clamping, feed-forward, gain scheduling in standard and parallel form.
|
PID controller with first-order low-pass filtered derivative. More...
Go to the source code of this file.
Classes | |
| class | control_system::pid::PID_LPF_1< T > |
| PID controller with a first-order low-pass filtered derivative. More... | |
Namespaces | |
| namespace | control_system |
| Contains control-system algorithms and controllers. | |
| namespace | control_system::pid |
| namespace | pid |
| Contains proportional-integral-derivative controller implementations. | |
PID controller with first-order low-pass filtered derivative.
This file defines the control_system::pid::PID_LPF_1 class, which implements a discrete-time proportional-integral-derivative (PID) controller with a first-order low-pass filter applied to the derivative contribution.
The controller uses configurable proportional, integral, and derivative gains, together with a derivative filter cutoff frequency. Previous control errors and controller outputs are maintained as internal state variables.
The controller output is constrained by a configurable maximum output limit.
| T | Numeric data type used for the controller calculations. |
Definition in file pid_lpf_1.h.