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.
Loading...
Searching...
No Matches
pd.h File Reference

Proportional-Derivative (PD) controller. More...

Include dependency graph for pd.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  control_system::pd::PD< T >
 Discrete-time proportional-derivative controller. More...

Namespaces

namespace  control_system
 Contains control-system algorithms and controllers.
namespace  control_system::pd
namespace  pd
 Contains proportional-derivative controller implementations.

Detailed Description

Proportional-Derivative (PD) controller.

This file defines the control_system::pd::PD class, which implements a discrete-time proportional-derivative (PD) controller.

The controller combines proportional and derivative actions to generate a control output based on the 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.

Template Parameters
TNumeric data type used for the controller calculations.
Author
Abhinay Kumar
Version
1.0.0
Date
2026-08-11

Definition in file pd.h.