2019-04-12 09:45:12 +02:00
|
|
|
/** A PID controller.
|
|
|
|
*
|
2022-12-14 17:39:07 +01:00
|
|
|
* @author Steffen Vogel <post@steffenvogel.de>
|
2022-03-15 09:05:42 -04:00
|
|
|
* @copyright 2014-2022, Institute for Automation of Complex Power Systems, EONERC
|
2022-05-19 17:40:10 +02:00
|
|
|
* @license Apache License 2.0
|
2019-04-12 09:45:12 +02:00
|
|
|
*********************************************************************************/
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <cmath>
|
|
|
|
#include <villas/dsp/pid.hpp>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace villas::dsp;
|
|
|
|
|
|
|
|
PID::PID(double _dt, double _max, double _min, double _Kp, double _Kd, double _Ki) :
|
|
|
|
dt(_dt),
|
|
|
|
max(_max),
|
|
|
|
min(_min),
|
|
|
|
Kp(_Kp),
|
|
|
|
Kd(_Kd),
|
2020-09-11 16:01:16 +02:00
|
|
|
Ki(_Ki),
|
|
|
|
pre_error(0),
|
|
|
|
integral(0)
|
2019-04-12 09:45:12 +02:00
|
|
|
{ }
|
|
|
|
|
|
|
|
double PID::calculate(double setpoint, double pv)
|
|
|
|
{
|
2022-12-02 17:16:44 +01:00
|
|
|
// Calculate error
|
2019-04-12 09:45:12 +02:00
|
|
|
double error = setpoint - pv;
|
|
|
|
|
2022-12-02 17:16:44 +01:00
|
|
|
// Proportional term
|
2019-04-12 09:45:12 +02:00
|
|
|
double Pout = Kp * error;
|
|
|
|
|
2022-12-02 17:16:44 +01:00
|
|
|
// Integral term
|
2019-04-12 09:45:12 +02:00
|
|
|
integral += error * dt;
|
|
|
|
double Iout = Ki * integral;
|
|
|
|
|
2022-12-02 17:16:44 +01:00
|
|
|
// Derivative term
|
2019-04-12 09:45:12 +02:00
|
|
|
double derivative = (error - pre_error) / dt;
|
|
|
|
double Dout = Kd * derivative;
|
|
|
|
|
2022-12-02 17:16:44 +01:00
|
|
|
// Calculate total output
|
2019-04-12 09:45:12 +02:00
|
|
|
double output = Pout + Iout + Dout;
|
|
|
|
|
2022-12-02 17:16:44 +01:00
|
|
|
// Restrict to max/min
|
2019-04-12 09:45:12 +02:00
|
|
|
if (output > max)
|
|
|
|
output = max;
|
|
|
|
else if (output < min)
|
|
|
|
output = min;
|
|
|
|
|
2022-12-02 17:16:44 +01:00
|
|
|
// Save error to previous error
|
2019-04-12 09:45:12 +02:00
|
|
|
pre_error = error;
|
|
|
|
|
|
|
|
return output;
|
|
|
|
}
|