mirror of https://github.com/ArduPilot/ardupilot
73 lines
2.1 KiB
C++
73 lines
2.1 KiB
C++
#pragma once
|
|
|
|
#include <AP_Common/AP_Common.h>
|
|
#include "AP_AutoTune.h"
|
|
#include <AP_Math/AP_Math.h>
|
|
#include <AC_PID/AC_PID.h>
|
|
|
|
class AP_PitchController
|
|
{
|
|
public:
|
|
AP_PitchController(const AP_FixedWing &parms);
|
|
|
|
/* Do not allow copies */
|
|
CLASS_NO_COPY(AP_PitchController);
|
|
|
|
float get_rate_out(float desired_rate, float scaler);
|
|
float get_servo_out(int32_t angle_err, float scaler, bool disable_integrator, bool ground_mode);
|
|
|
|
// setup a one loop FF scale multiplier. This replaces any previous scale applied
|
|
// so should only be used when only one source of scaling is needed
|
|
void set_ff_scale(float _ff_scale) { ff_scale = _ff_scale; }
|
|
|
|
void reset_I();
|
|
|
|
/*
|
|
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;
|
|
rate_pid.set_integrator(rate_pid.get_i() * 0.995);
|
|
}
|
|
|
|
void autotune_start(void);
|
|
void autotune_restore(void);
|
|
|
|
const AP_PIDInfo& get_pid_info(void) const
|
|
{
|
|
return _pid_info;
|
|
}
|
|
|
|
// set the PID notch sample rates
|
|
void set_notch_sample_rate(float sample_rate) { rate_pid.set_notch_sample_rate(sample_rate); }
|
|
|
|
static const struct AP_Param::GroupInfo var_info[];
|
|
|
|
AP_Float &kP(void) { return rate_pid.kP(); }
|
|
AP_Float &kI(void) { return rate_pid.kI(); }
|
|
AP_Float &kD(void) { return rate_pid.kD(); }
|
|
AP_Float &kFF(void) { return rate_pid.ff(); }
|
|
AP_Float &tau(void) { return gains.tau; }
|
|
|
|
void convert_pid();
|
|
|
|
private:
|
|
const AP_FixedWing &aparm;
|
|
AP_AutoTune::ATGains gains;
|
|
AP_AutoTune *autotune;
|
|
bool failed_autotune_alloc;
|
|
AP_Int16 _max_rate_neg;
|
|
AP_Float _roll_ff;
|
|
float _last_out;
|
|
AC_PID rate_pid{0.04, 0.15, 0, 0.345, 0.666, 3, 0, 12, 150, 1};
|
|
float angle_err_deg;
|
|
float ff_scale = 1.0;
|
|
|
|
AP_PIDInfo _pid_info;
|
|
|
|
float _get_rate_out(float desired_rate, float scaler, bool disable_integrator, float aspeed, bool ground_mode);
|
|
float _get_coordination_rate_offset(float &aspeed, bool &inverted) const;
|
|
};
|