Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041 #include <limits.h>
00042 #include "cxutils/timer.h"
00043 #include "cxutils/math/pidcontroller.h"
00044
00045 using namespace CxUtils;
00046
00052 PIDController::PIDController()
00053 {
00054 Reset();
00055
00056 mDT = 1.0;
00057 }
00058
00059
00065 PIDController::~PIDController()
00066 {
00067 }
00068
00069
00077 void PIDController::SetRate(const double dt)
00078 {
00079 mDT = dt;
00080 }
00081
00082
00102 double PIDController::UpdatePID(const double error)
00103 {
00104 double solution;
00105
00106
00107
00108
00109
00110 if(mPreviousSolution > mLowerBound && mPreviousSolution < mUpperBound)
00111 {
00112 this->mSumOfError += error;
00113 }
00114 solution = mP*error + mI*mSumOfError*mDT + mD*(error - mPreviousError)/mDT;
00115 mPreviousError = error;
00116
00117
00118 solution += this->mOffset;
00119
00120
00121
00122 if(solution <= mLowerBound)
00123 solution = mLowerBound;
00124 if(solution >= mUpperBound)
00125 solution = mUpperBound;
00126
00127 this->mPreviousSolution = solution;
00128
00129 return solution;
00130 }
00131
00132
00145 void PIDController::SetOffset(const double offset)
00146 {
00147 this->mOffset = offset;
00148 }
00149
00150
00164 void PIDController::SetBounds(const double min, const double max)
00165 {
00166 if(max > min)
00167 {
00168 this->mLowerBound = min;
00169 this->mUpperBound = max;
00170 }
00171 }
00172
00173
00187 void PIDController::SetGains(const double p, const double i, const double d)
00188 {
00189 mP = p;
00190 mI = i;
00191 mD = d;
00192 }
00193
00194
00200 void PIDController::ClearError()
00201 {
00202 mSumOfError = 0;
00203 }
00204
00205
00211 void PIDController::Reset()
00212 {
00213 mLowerBound = -LONG_MAX;
00214 mUpperBound = LONG_MAX;
00215
00216 mP = 0;
00217 mI = 0;
00218 mD = 0;
00219 mSumOfError = 0;
00220 mPreviousSolution = 0;
00221 mPreviousError = 0;
00222 mOffset = 0;
00223 }
00224
00225
00239 void PIDController::Reset(const double lower,
00240 const double upper,
00241 const double offset,
00242 const double p,
00243 const double i,
00244 const double d)
00245 {
00246 SetBounds(lower, upper);
00247 SetGains(p, i, d);
00248 SetOffset(offset);
00249 mSumOfError = 0;
00250 mPreviousSolution = mOffset;
00251 mPreviousError = 0;
00252 }
00253
00254