|
SAE WS_2324
|
PID Controller Module Base Class. More...
Public Member Functions | |
| __init__ (self, kp, ki, kd, isat, Ts) | |
| PID Controller Class Initializer Function. | |
| run_pi (self, ref, fdb) | |
| PID Controller method to run a single instance of a controller. | |
PID Controller Module Base Class.
The Base class of PID Controller contains the data and the methods required to implement the PID Controller.
| pid_controller.pid.run_pi | ( | self, | |
| ref, | |||
| fdb ) |
PID Controller method to run a single instance of a controller.
This method will take the reference and feedback value arguments and will run the PID Controller. The output can be accessed by the #pid.out for a particular instance of the controller.
| ref | Refernce input Value |
| fdb | Feedback reference Value |