Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: PID/pid.cpp
- Revision:
- 22:c18f04d1dc49
- Child:
- 23:5238b046119b
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/PID/pid.cpp Fri Nov 18 02:47:59 2016 +0000
@@ -0,0 +1,94 @@
+#ifndef _PID_SOURCE_
+#define _PID_SOURCE_
+
+#include <iostream>
+#include <cmath>
+#include "pid.h"
+
+using namespace std;
+
+class PIDImpl
+{
+ public:
+ PIDImpl( double dt, double max, double min, double Kp, double Kd, double Ki );
+ ~PIDImpl();
+ double calculate( double setpoint, double pv );
+
+ private:
+ double _dt;
+ double _max;
+ double _min;
+ double _Kp;
+ double _Kd;
+ double _Ki;
+ double _pre_error;
+ double _integral;
+};
+
+
+PID::PID( double dt, double max, double min, double Kp, double Kd, double Ki )
+{
+ pimpl = new PIDImpl(dt,max,min,Kp,Kd,Ki);
+}
+double PID::calculate( double setpoint, double pv )
+{
+ return pimpl->calculate(setpoint,pv);
+}
+PID::~PID()
+{
+ delete pimpl;
+}
+
+
+/**
+ * Implementation
+ */
+PIDImpl::PIDImpl( double dt, double max, double min, double Kp, double Kd, double Ki ) :
+ _dt(dt),
+ _max(max),
+ _min(min),
+ _Kp(Kp),
+ _Kd(Kd),
+ _Ki(Ki),
+ _pre_error(0),
+ _integral(0)
+{
+}
+
+double PIDImpl::calculate( double setpoint, double pv )
+{
+
+ // Calculate error
+ double error = setpoint - pv;
+
+ // Proportional term
+ double Pout = _Kp * error;
+
+ // Integral term
+ _integral += error * _dt;
+ double Iout = _Ki * _integral;
+
+ // Derivative term
+ double derivative = (error - _pre_error) / _dt;
+ double Dout = _Kd * derivative;
+
+ // Calculate total output
+ double output = Pout + Iout + Dout;
+
+ // Restrict to max/min
+ if( output > _max )
+ output = _max;
+ else if( output < _min )
+ output = _min;
+
+ // Save error to previous error
+ _pre_error = error;
+
+ return output;
+}
+
+PIDImpl::~PIDImpl()
+{
+}
+
+#endif
\ No newline at end of file