|
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.
|
Derivative (D) controller. More...
Go to the source code of this file.
Classes | |
| class | control_system::derivative::D< T > |
| Discrete-time derivative controller. More... | |
Namespaces | |
| namespace | control_system |
| Contains control-system algorithms and controllers. | |
| namespace | control_system::derivative |
| namespace | derivative |
| Contains derivative controller implementations. | |
Derivative (D) controller.
This file defines the control_system::derivative::D class, which implements a discrete-time derivative controller.
The controller generates a control output based on the rate of change of the control error between a reference value and the measured or current value.
The controller maintains the previous control error as internal state and applies a configurable maximum output limit.
| T | Numeric data type used for the controller calculations. |
Definition in file d.h.