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