2016-02-17 21:25:34 -04:00
|
|
|
#pragma once
|
2012-08-21 23:08:14 -03:00
|
|
|
|
2015-08-11 03:28:41 -03:00
|
|
|
#include <AP_AHRS/AP_AHRS.h>
|
|
|
|
#include <AP_Common/AP_Common.h>
|
|
|
|
#include <AP_Vehicle/AP_Vehicle.h>
|
|
|
|
#include "AP_AutoTune.h"
|
2019-01-18 00:23:42 -04:00
|
|
|
#include <AP_Logger/AP_Logger.h>
|
2015-08-11 03:28:41 -03:00
|
|
|
#include <AP_Math/AP_Math.h>
|
2012-08-21 23:08:14 -03:00
|
|
|
|
|
|
|
class AP_PitchController {
|
|
|
|
public:
|
2019-01-17 20:57:30 -04:00
|
|
|
AP_PitchController(AP_AHRS &ahrs, const AP_Vehicle::FixedWing &parms)
|
2017-12-12 21:06:12 -04:00
|
|
|
: aparm(parms)
|
2019-01-17 20:57:30 -04:00
|
|
|
, autotune(gains, AP_AutoTune::AUTOTUNE_PITCH, parms)
|
2017-12-12 21:06:12 -04:00
|
|
|
, _ahrs(ahrs)
|
|
|
|
{
|
|
|
|
AP_Param::setup_object_defaults(this, var_info);
|
2020-05-10 04:11:11 -03:00
|
|
|
_slew_rate_filter.set_cutoff_frequency(10.0f);
|
|
|
|
_slew_rate_filter.reset(0.0f);
|
2017-08-30 15:10:44 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Do not allow copies */
|
|
|
|
AP_PitchController(const AP_PitchController &other) = delete;
|
|
|
|
AP_PitchController &operator=(const AP_PitchController&) = delete;
|
2012-12-12 17:41:12 -04:00
|
|
|
|
2013-07-17 22:57:11 -03:00
|
|
|
int32_t get_rate_out(float desired_rate, float scaler);
|
2013-08-02 08:54:48 -03:00
|
|
|
int32_t get_servo_out(int32_t angle_err, float scaler, bool disable_integrator);
|
2012-08-21 23:08:14 -03:00
|
|
|
|
|
|
|
void reset_I();
|
|
|
|
|
2019-07-06 22:20:49 -03:00
|
|
|
/*
|
|
|
|
reduce the integrator, used when we have a low scale factor in a quadplane hover
|
|
|
|
*/
|
|
|
|
void decay_I() {
|
|
|
|
// this reduces integrator by 95% over 2s
|
|
|
|
_pid_info.I *= 0.995f;
|
|
|
|
}
|
|
|
|
|
2014-04-12 01:11:33 -03:00
|
|
|
void autotune_start(void) { autotune.start(); }
|
|
|
|
void autotune_restore(void) { autotune.stop(); }
|
|
|
|
|
2019-01-18 00:23:42 -04:00
|
|
|
const AP_Logger::PID_Info& get_pid_info(void) const { return _pid_info; }
|
2015-05-22 18:39:38 -03:00
|
|
|
|
2012-08-21 23:08:14 -03:00
|
|
|
static const struct AP_Param::GroupInfo var_info[];
|
|
|
|
|
2016-05-06 01:43:25 -03:00
|
|
|
AP_Float &kP(void) { return gains.P; }
|
|
|
|
AP_Float &kI(void) { return gains.I; }
|
|
|
|
AP_Float &kD(void) { return gains.D; }
|
|
|
|
AP_Float &kFF(void) { return gains.FF; }
|
2017-08-30 15:10:44 -03:00
|
|
|
|
2012-08-21 23:08:14 -03:00
|
|
|
private:
|
2017-08-30 15:10:44 -03:00
|
|
|
const AP_Vehicle::FixedWing &aparm;
|
2014-04-12 01:11:33 -03:00
|
|
|
AP_AutoTune::ATGains gains;
|
|
|
|
AP_AutoTune autotune;
|
2012-08-21 23:08:14 -03:00
|
|
|
AP_Int16 _max_rate_neg;
|
|
|
|
AP_Float _roll_ff;
|
|
|
|
uint32_t _last_t;
|
2013-04-23 16:22:17 -03:00
|
|
|
float _last_out;
|
2012-08-21 23:08:14 -03:00
|
|
|
|
2019-01-18 00:23:42 -04:00
|
|
|
AP_Logger::PID_Info _pid_info;
|
2013-07-10 10:25:06 -03:00
|
|
|
|
2013-08-02 08:54:48 -03:00
|
|
|
int32_t _get_rate_out(float desired_rate, float scaler, bool disable_integrator, float aspeed);
|
2013-07-17 22:57:11 -03:00
|
|
|
float _get_coordination_rate_offset(float &aspeed, bool &inverted) const;
|
2012-08-21 23:08:14 -03:00
|
|
|
|
2013-08-14 01:56:18 -03:00
|
|
|
AP_AHRS &_ahrs;
|
2020-05-10 04:11:11 -03:00
|
|
|
|
|
|
|
// D gain limit cycle control
|
|
|
|
float _last_pid_info_D; // value of the D term (angular rate control feedback) from the previous time step (deg)
|
|
|
|
LowPassFilterFloat _slew_rate_filter; // LPF applied to the derivative of the control action generated by the angular rate feedback
|
|
|
|
float _slew_rate_amplitude; // Amplitude of the servo slew rate produced by the angular rate feedback (deg/sec)
|
|
|
|
float _D_gain_modifier = 1.0f; // Gain modifier applied to the angular rate feedback to prevent excessive slew rate
|
|
|
|
AP_Float _slew_rate_max; // Maximum permitted angular rate control feedback servo slew rate (deg/sec)
|
|
|
|
AP_Float _slew_rate_tau; // Time constant used to recover gain after a slew rate exceedance (sec)
|
|
|
|
|
2012-08-21 23:08:14 -03:00
|
|
|
};
|