PIController.h
Go to the documentation of this file.
1 //
2 // Created by reza on 04-01-21.
3 //
4 
5 #ifndef MERCURYDPM_PICONTROLLER_H
6 #define MERCURYDPM_PICONTROLLER_H
7 #include "Math/ExtendedMath.h"
8 
9 class PIController {
13 
14 public:
15 // Constructor
17  Mdouble apply (Mdouble stressError, Mdouble timeStep);
18 };
19 
20 
21 #endif //MERCURYDPM_PICONTROLLER_H
Definition: PIController.h:9
Mdouble apply(Mdouble stressError, Mdouble timeStep)
Definition: PIController.cc:9
Mdouble iGain
Definition: PIController.h:11
Mdouble iController
Definition: PIController.h:12
PIController(Mdouble pGain, Mdouble iGain)
Definition: PIController.cc:6
Mdouble pGain
Definition: PIController.h:10