2014-05-02 18:12:24 -03:00
|
|
|
/// @file AC_HELI_PID.cpp
|
|
|
|
/// @brief Generic PID algorithm
|
|
|
|
|
2015-08-11 03:28:41 -03:00
|
|
|
#include <AP_Math/AP_Math.h>
|
2014-05-02 18:12:24 -03:00
|
|
|
#include "AC_HELI_PID.h"
|
|
|
|
|
2015-10-25 14:03:46 -03:00
|
|
|
const AP_Param::GroupInfo AC_HELI_PID::var_info[] = {
|
2014-05-02 18:12:24 -03:00
|
|
|
// @Param: P
|
|
|
|
// @DisplayName: PID Proportional Gain
|
|
|
|
// @Description: P Gain which produces an output value that is proportional to the current error value
|
|
|
|
AP_GROUPINFO("P", 0, AC_HELI_PID, _kp, 0),
|
2015-01-23 06:05:40 -04:00
|
|
|
|
2014-05-02 18:12:24 -03:00
|
|
|
// @Param: I
|
|
|
|
// @DisplayName: PID Integral Gain
|
|
|
|
// @Description: I Gain which produces an output that is proportional to both the magnitude and the duration of the error
|
|
|
|
AP_GROUPINFO("I", 1, AC_HELI_PID, _ki, 0),
|
2015-01-23 06:05:40 -04:00
|
|
|
|
2014-05-02 18:12:24 -03:00
|
|
|
// @Param: D
|
|
|
|
// @DisplayName: PID Derivative Gain
|
|
|
|
// @Description: D Gain which produces an output that is proportional to the rate of change of the error
|
|
|
|
AP_GROUPINFO("D", 2, AC_HELI_PID, _kd, 0),
|
2015-01-23 06:05:40 -04:00
|
|
|
|
2015-05-22 21:00:17 -03:00
|
|
|
// @Param: VFF
|
|
|
|
// @DisplayName: Velocity FF FeedForward Gain
|
|
|
|
// @Description: Velocity FF Gain which produces an output value that is proportional to the demanded input
|
2017-02-10 01:25:27 -04:00
|
|
|
AP_GROUPINFO("VFF", 4, AC_HELI_PID, _ff, 0),
|
2015-01-23 06:05:40 -04:00
|
|
|
|
|
|
|
// @Param: IMAX
|
|
|
|
// @DisplayName: PID Integral Maximum
|
|
|
|
// @Description: The maximum/minimum value that the I term can output
|
|
|
|
AP_GROUPINFO("IMAX", 5, AC_HELI_PID, _imax, 0),
|
|
|
|
|
2016-02-15 02:24:52 -04:00
|
|
|
// @Param: FILT
|
2015-01-23 06:05:40 -04:00
|
|
|
// @DisplayName: PID Input filter frequency in Hz
|
2016-02-17 07:03:37 -04:00
|
|
|
// @Description: PID Input filter frequency in Hz
|
2016-02-15 02:24:52 -04:00
|
|
|
AP_GROUPINFO("FILT", 6, AC_HELI_PID, _filt_hz, AC_PID_FILT_HZ_DEFAULT),
|
2015-05-22 21:00:17 -03:00
|
|
|
|
2016-02-15 02:24:52 -04:00
|
|
|
// @Param: ILMI
|
2015-09-23 20:27:26 -03:00
|
|
|
// @DisplayName: I-term Leak Minimum
|
|
|
|
// @Description: Point below which I-term will not leak down
|
2016-02-17 07:03:37 -04:00
|
|
|
// @Range: 0 1
|
2015-09-23 20:27:26 -03:00
|
|
|
// @User: Advanced
|
2016-02-15 02:24:52 -04:00
|
|
|
AP_GROUPINFO("ILMI", 7, AC_HELI_PID, _leak_min, AC_PID_LEAK_MIN),
|
2015-09-23 20:27:26 -03:00
|
|
|
|
2016-05-12 04:37:01 -03:00
|
|
|
// index 8 was for AFF, now removed
|
2015-09-23 20:27:26 -03:00
|
|
|
|
2014-05-02 18:12:24 -03:00
|
|
|
AP_GROUPEND
|
|
|
|
};
|
|
|
|
|
2015-01-23 06:05:40 -04:00
|
|
|
/// Constructor for PID
|
2017-02-10 01:25:27 -04:00
|
|
|
AC_HELI_PID::AC_HELI_PID(float initial_p, float initial_i, float initial_d, float initial_imax, float initial_filt_hz, float dt, float initial_ff) :
|
2018-01-02 22:41:37 -04:00
|
|
|
AC_PID(initial_p, initial_i, initial_d, initial_imax, initial_filt_hz, dt, initial_ff)
|
2015-01-23 06:05:40 -04:00
|
|
|
{
|
2015-05-22 21:00:17 -03:00
|
|
|
_last_requested_rate = 0;
|
2015-01-23 06:05:40 -04:00
|
|
|
}
|
|
|
|
|
2014-05-02 18:12:24 -03:00
|
|
|
// This is an integrator which tends to decay to zero naturally
|
|
|
|
// if the error is zero.
|
|
|
|
|
2015-01-23 06:05:40 -04:00
|
|
|
float AC_HELI_PID::get_leaky_i(float leak_rate)
|
2014-05-02 18:12:24 -03:00
|
|
|
{
|
2015-05-21 22:43:43 -03:00
|
|
|
if(!is_zero(_ki) && !is_zero(_dt)){
|
2015-09-23 20:27:26 -03:00
|
|
|
|
|
|
|
// integrator does not leak down below Leak Min
|
|
|
|
if (_integrator > _leak_min){
|
|
|
|
_integrator -= (float)(_integrator - _leak_min) * leak_rate;
|
|
|
|
} else if (_integrator < -_leak_min) {
|
|
|
|
_integrator -= (float)(_integrator + _leak_min) * leak_rate;
|
|
|
|
}
|
|
|
|
|
2015-05-21 22:43:43 -03:00
|
|
|
_integrator += ((float)_input * _ki) * _dt;
|
|
|
|
if (_integrator < -_imax) {
|
|
|
|
_integrator = -_imax;
|
|
|
|
} else if (_integrator > _imax) {
|
|
|
|
_integrator = _imax;
|
|
|
|
}
|
2014-05-02 18:12:24 -03:00
|
|
|
|
2015-05-21 22:43:43 -03:00
|
|
|
_pid_info.I = _integrator;
|
|
|
|
return _integrator;
|
|
|
|
}
|
|
|
|
return 0;
|
2014-05-02 18:12:24 -03:00
|
|
|
}
|