2014-04-12 01:11:33 -03:00
|
|
|
/*
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
The strategy for roll/pitch autotune is to give the user a AUTOTUNE
|
|
|
|
flight mode which behaves just like FBWA, but does automatic
|
|
|
|
tuning.
|
|
|
|
|
|
|
|
While the user is flying in AUTOTUNE the gains are saved every 10
|
|
|
|
seconds, but the saved gains are not the current gains, instead it
|
|
|
|
saves the gains from 10s ago. When the user exits AUTOTUNE the
|
|
|
|
gains are restored from 10s ago.
|
|
|
|
|
|
|
|
This allows the user to fly as much as they want in AUTOTUNE mode,
|
|
|
|
and if they are ever unhappy they just exit the mode. If they stay
|
|
|
|
in AUTOTUNE for more than 10s then their gains will have changed.
|
|
|
|
|
|
|
|
Using this approach users don't need any special switches, they
|
|
|
|
just need to be able to enter and exit AUTOTUNE mode
|
|
|
|
*/
|
|
|
|
|
2015-10-26 09:01:52 -03:00
|
|
|
#include "AP_AutoTune.h"
|
|
|
|
|
2015-08-11 03:28:41 -03:00
|
|
|
#include <AP_Common/AP_Common.h>
|
2015-10-26 09:01:52 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2019-06-27 00:03:58 -03:00
|
|
|
#include <AP_Logger/AP_Logger.h>
|
2015-08-11 03:28:41 -03:00
|
|
|
#include <AP_Math/AP_Math.h>
|
2014-04-12 01:11:33 -03:00
|
|
|
|
|
|
|
extern const AP_HAL::HAL& hal;
|
|
|
|
|
|
|
|
// time in milliseconds between autotune saves
|
|
|
|
#define AUTOTUNE_SAVE_PERIOD 10000U
|
|
|
|
|
2014-04-13 09:11:57 -03:00
|
|
|
// step size for increasing gains, percentage
|
2021-03-31 20:42:19 -03:00
|
|
|
#define AUTOTUNE_INCREASE_FF_STEP 12
|
2021-04-04 06:50:15 -03:00
|
|
|
#define AUTOTUNE_INCREASE_PD_STEP 10
|
2014-04-12 01:11:33 -03:00
|
|
|
|
2014-04-13 09:11:57 -03:00
|
|
|
// step size for decreasing gains, percentage
|
2021-03-31 20:42:19 -03:00
|
|
|
#define AUTOTUNE_DECREASE_FF_STEP 15
|
|
|
|
#define AUTOTUNE_DECREASE_PD_STEP 20
|
2014-04-13 02:05:52 -03:00
|
|
|
|
2021-03-31 20:42:19 -03:00
|
|
|
// limits on IMAX
|
|
|
|
#define AUTOTUNE_MIN_IMAX 0.4
|
|
|
|
#define AUTOTUNE_MAX_IMAX 0.9
|
2014-04-12 01:11:33 -03:00
|
|
|
|
2021-03-31 20:42:19 -03:00
|
|
|
// ratio of I to P
|
|
|
|
#define AUTOTUNE_I_RATIO 0.75
|
2014-04-13 02:05:52 -03:00
|
|
|
|
2021-04-04 21:25:05 -03:00
|
|
|
// time constant of rate trim loop
|
|
|
|
#define TRIM_TCONST 1.0f
|
|
|
|
|
2021-03-31 20:42:19 -03:00
|
|
|
// overshoot threshold
|
|
|
|
#define AUTOTUNE_OVERSHOOT 1.1
|
2014-04-13 02:05:52 -03:00
|
|
|
|
2014-04-12 01:11:33 -03:00
|
|
|
// constructor
|
2014-04-15 17:58:02 -03:00
|
|
|
AP_AutoTune::AP_AutoTune(ATGains &_gains, ATType _type,
|
2021-02-27 05:56:41 -04:00
|
|
|
const AP_Vehicle::FixedWing &parms,
|
|
|
|
AC_PID &_rpid) :
|
2014-04-12 05:21:50 -03:00
|
|
|
current(_gains),
|
2021-02-27 05:56:41 -04:00
|
|
|
rpid(_rpid),
|
2014-04-12 05:21:50 -03:00
|
|
|
type(_type),
|
2014-04-13 09:11:57 -03:00
|
|
|
aparm(parms),
|
2021-03-31 20:42:19 -03:00
|
|
|
ff_filter(2)
|
2014-04-12 05:21:50 -03:00
|
|
|
{}
|
2014-04-12 01:11:33 -03:00
|
|
|
|
2015-05-04 03:15:49 -03:00
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
|
2014-04-12 01:11:33 -03:00
|
|
|
#include <stdio.h>
|
2014-04-12 05:21:50 -03:00
|
|
|
# define Debug(fmt, args ...) do {::printf("%s:%d: " fmt "\n", __FUNCTION__, __LINE__, ## args); } while(0)
|
2014-04-12 01:11:33 -03:00
|
|
|
#else
|
|
|
|
# define Debug(fmt, args ...)
|
|
|
|
#endif
|
|
|
|
|
2014-04-13 09:11:57 -03:00
|
|
|
/*
|
|
|
|
auto-tuning table. This table gives the starting values for key
|
|
|
|
tuning parameters based on a user chosen AUTOTUNE_LEVEL parameter
|
|
|
|
from 1 to 10. Level 1 is a very soft tune. Level 10 is a very
|
2016-05-12 13:54:45 -03:00
|
|
|
aggressive tune.
|
2021-04-04 06:50:15 -03:00
|
|
|
Level 0 means use the existing RMAX and TCONST parameters
|
2014-04-13 09:11:57 -03:00
|
|
|
*/
|
|
|
|
static const struct {
|
|
|
|
float tau;
|
|
|
|
float rmax;
|
2015-10-25 14:03:46 -03:00
|
|
|
} tuning_table[] = {
|
2021-03-31 20:42:19 -03:00
|
|
|
{ 1.00, 20 }, // level 1
|
|
|
|
{ 0.90, 30 }, // level 2
|
|
|
|
{ 0.80, 40 }, // level 3
|
|
|
|
{ 0.70, 50 }, // level 4
|
|
|
|
{ 0.60, 60 }, // level 5
|
|
|
|
{ 0.50, 75 }, // level 6
|
2021-04-04 21:23:53 -03:00
|
|
|
{ 0.30, 90 }, // level 7
|
|
|
|
{ 0.2, 120 }, // level 8
|
|
|
|
{ 0.15, 160 }, // level 9
|
|
|
|
{ 0.1, 210 }, // level 10
|
|
|
|
{ 0.1, 300 }, // (yes, it goes to 11)
|
2014-04-13 09:11:57 -03:00
|
|
|
};
|
|
|
|
|
2014-04-12 01:11:33 -03:00
|
|
|
/*
|
|
|
|
start an autotune session
|
|
|
|
*/
|
|
|
|
void AP_AutoTune::start(void)
|
|
|
|
{
|
|
|
|
running = true;
|
2021-03-31 20:42:19 -03:00
|
|
|
state = ATState::IDLE;
|
2015-11-19 23:05:52 -04:00
|
|
|
uint32_t now = AP_HAL::millis();
|
2014-04-12 01:11:33 -03:00
|
|
|
|
|
|
|
last_save_ms = now;
|
2014-04-15 17:58:02 -03:00
|
|
|
|
2021-04-10 19:30:10 -03:00
|
|
|
current = restore = last_save = get_gains(current);
|
2014-04-12 01:11:33 -03:00
|
|
|
|
2021-04-01 23:31:45 -03:00
|
|
|
// do first update of rmax and tau now
|
|
|
|
update_rmax();
|
|
|
|
|
2021-03-31 20:42:19 -03:00
|
|
|
rpid.kIMAX().set(constrain_float(rpid.kIMAX(), AUTOTUNE_MIN_IMAX, AUTOTUNE_MAX_IMAX));
|
2014-04-13 02:05:52 -03:00
|
|
|
|
2014-04-12 01:11:33 -03:00
|
|
|
next_save = current;
|
|
|
|
|
2021-04-12 23:37:37 -03:00
|
|
|
// use 0.75Hz filters on the actuator, rate and target to reduce impact of noise
|
2021-04-08 02:57:42 -03:00
|
|
|
actuator_filter.set_cutoff_frequency(AP::scheduler().get_loop_rate_hz(), 0.75);
|
|
|
|
rate_filter.set_cutoff_frequency(AP::scheduler().get_loop_rate_hz(), 0.75);
|
2021-03-31 20:42:19 -03:00
|
|
|
|
2021-04-12 23:37:37 -03:00
|
|
|
// target filter is a bit broader
|
|
|
|
target_filter.set_cutoff_frequency(AP::scheduler().get_loop_rate_hz(), 4);
|
|
|
|
|
2021-04-03 20:15:20 -03:00
|
|
|
ff_filter.reset();
|
|
|
|
actuator_filter.reset();
|
|
|
|
rate_filter.reset();
|
|
|
|
|
2021-04-04 06:50:15 -03:00
|
|
|
if (!is_positive(rpid.slew_limit())) {
|
|
|
|
// we must have a slew limit, default to 150 deg/s
|
|
|
|
rpid.slew_limit().set_and_save(150);
|
|
|
|
}
|
|
|
|
|
2021-04-08 03:36:32 -03:00
|
|
|
if (current.FF < 0.01) {
|
|
|
|
// don't allow for zero FF
|
|
|
|
current.FF = 0.01;
|
|
|
|
rpid.ff().set(current.FF);
|
|
|
|
}
|
|
|
|
|
2021-02-27 05:56:41 -04:00
|
|
|
Debug("START FF -> %.3f\n", rpid.ff().get());
|
2014-04-12 01:11:33 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
called when we change state to see if we should change gains
|
|
|
|
*/
|
|
|
|
void AP_AutoTune::stop(void)
|
|
|
|
{
|
2014-08-14 03:03:23 -03:00
|
|
|
if (running) {
|
|
|
|
running = false;
|
|
|
|
save_gains(restore);
|
2021-04-02 20:19:54 -03:00
|
|
|
current = restore;
|
2014-08-14 03:03:23 -03:00
|
|
|
}
|
2014-04-12 01:11:33 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
one update cycle of the autotuner
|
|
|
|
*/
|
2021-04-12 23:37:37 -03:00
|
|
|
void AP_AutoTune::update(AP_Logger::PID_Info &pinfo, float scaler, float angle_err_deg)
|
2014-04-12 01:11:33 -03:00
|
|
|
{
|
|
|
|
if (!running) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
check_save();
|
|
|
|
// see what state we are in
|
2021-03-31 20:42:19 -03:00
|
|
|
ATState new_state = state;
|
2021-04-12 23:37:37 -03:00
|
|
|
const float desired_rate = target_filter.apply(pinfo.target);
|
2021-04-02 20:54:31 -03:00
|
|
|
|
2021-04-02 22:00:44 -03:00
|
|
|
// filter actuator without I term so we can take ratios without
|
|
|
|
// accounting for trim offsets. We first need to include the I and
|
|
|
|
// clip to 45 degrees to get the right value of the real surface
|
|
|
|
const float clipped_actuator = constrain_float(pinfo.FF + pinfo.P + pinfo.D + pinfo.I, -45, 45) - pinfo.I;
|
|
|
|
const float actuator = actuator_filter.apply(clipped_actuator);
|
2021-03-31 20:42:19 -03:00
|
|
|
const float actual_rate = rate_filter.apply(pinfo.actual);
|
|
|
|
|
|
|
|
max_actuator = MAX(max_actuator, actuator);
|
|
|
|
min_actuator = MIN(min_actuator, actuator);
|
|
|
|
max_rate = MAX(max_rate, actual_rate);
|
|
|
|
min_rate = MIN(min_rate, actual_rate);
|
|
|
|
max_target = MAX(max_target, desired_rate);
|
|
|
|
min_target = MIN(min_target, desired_rate);
|
|
|
|
max_P = MAX(max_P, fabsf(pinfo.P));
|
|
|
|
max_D = MAX(max_D, fabsf(pinfo.D));
|
|
|
|
min_Dmod = MIN(min_Dmod, pinfo.Dmod);
|
2021-04-11 21:13:16 -03:00
|
|
|
max_Dmod = MAX(max_Dmod, pinfo.Dmod);
|
2021-04-04 06:50:15 -03:00
|
|
|
max_SRate = MAX(max_SRate, pinfo.slew_rate);
|
2021-03-31 20:42:19 -03:00
|
|
|
|
2021-04-12 23:37:37 -03:00
|
|
|
float att_limit_deg;
|
2021-03-31 20:42:19 -03:00
|
|
|
if (type == AUTOTUNE_ROLL) {
|
2021-04-12 23:37:37 -03:00
|
|
|
att_limit_deg = aparm.roll_limit_cd * 0.01;
|
2021-03-31 20:42:19 -03:00
|
|
|
} else {
|
2021-04-12 23:37:37 -03:00
|
|
|
att_limit_deg = MIN(abs(aparm.pitch_limit_max_cd),abs(aparm.pitch_limit_min_cd))*0.01;
|
2021-03-31 20:42:19 -03:00
|
|
|
}
|
2021-04-02 20:54:31 -03:00
|
|
|
|
|
|
|
// thresholds for when we consider an event to start and end
|
2021-04-13 20:14:33 -03:00
|
|
|
const float rate_threshold1 = 0.6 * MIN(att_limit_deg / current.tau.get(), current.rmax_pos);
|
2021-03-31 20:42:19 -03:00
|
|
|
const float rate_threshold2 = 0.25 * rate_threshold1;
|
2021-04-12 23:37:37 -03:00
|
|
|
bool in_att_demand = fabsf(angle_err_deg) >= 0.3 * att_limit_deg;
|
2014-04-12 01:11:33 -03:00
|
|
|
|
2021-03-31 20:42:19 -03:00
|
|
|
switch (state) {
|
|
|
|
case ATState::IDLE:
|
2021-04-12 23:37:37 -03:00
|
|
|
if (desired_rate > rate_threshold1 && in_att_demand) {
|
2021-03-31 20:42:19 -03:00
|
|
|
new_state = ATState::DEMAND_POS;
|
2021-04-12 23:37:37 -03:00
|
|
|
} else if (desired_rate < -rate_threshold1 && in_att_demand) {
|
2021-03-31 20:42:19 -03:00
|
|
|
new_state = ATState::DEMAND_NEG;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ATState::DEMAND_POS:
|
|
|
|
if (desired_rate < rate_threshold2) {
|
|
|
|
new_state = ATState::IDLE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ATState::DEMAND_NEG:
|
|
|
|
if (desired_rate > -rate_threshold2) {
|
|
|
|
new_state = ATState::IDLE;
|
|
|
|
}
|
|
|
|
break;
|
2014-04-12 01:11:33 -03:00
|
|
|
}
|
|
|
|
|
2021-04-11 21:13:16 -03:00
|
|
|
const uint32_t now = AP_HAL::millis();
|
|
|
|
|
2021-04-12 05:48:36 -03:00
|
|
|
if (now - last_log_ms >= 40) {
|
|
|
|
// log at 25Hz
|
|
|
|
struct log_ATRP pkt = {
|
|
|
|
LOG_PACKET_HEADER_INIT(LOG_ATRP_MSG),
|
|
|
|
time_us : AP_HAL::micros64(),
|
|
|
|
type : uint8_t(type),
|
|
|
|
state: uint8_t(new_state),
|
|
|
|
actuator : actuator,
|
|
|
|
desired_rate : desired_rate,
|
|
|
|
actual_rate : actual_rate,
|
2021-04-13 22:34:04 -03:00
|
|
|
FF_single: FF_single,
|
2021-04-12 05:48:36 -03:00
|
|
|
FF: current.FF,
|
|
|
|
P: current.P,
|
|
|
|
I: current.I,
|
|
|
|
D: current.D,
|
|
|
|
action: uint8_t(action),
|
|
|
|
rmax: float(current.rmax_pos.get()),
|
2021-04-12 23:37:37 -03:00
|
|
|
tau: current.tau.get()
|
2021-04-12 05:48:36 -03:00
|
|
|
};
|
|
|
|
AP::logger().WriteBlock(&pkt, sizeof(pkt));
|
|
|
|
last_log_ms = now;
|
|
|
|
}
|
|
|
|
|
2021-03-31 20:42:19 -03:00
|
|
|
if (new_state == state) {
|
2021-04-11 21:13:16 -03:00
|
|
|
if (state == ATState::IDLE &&
|
|
|
|
now - state_enter_ms > 500 &&
|
|
|
|
max_Dmod < 0.9) {
|
|
|
|
// we've been oscillating while idle, reduce P or D
|
|
|
|
const float gain_mul = (100 - AUTOTUNE_DECREASE_PD_STEP)*0.01;
|
|
|
|
if (max_P < max_D) {
|
|
|
|
current.D *= gain_mul;
|
|
|
|
} else {
|
|
|
|
current.P *= gain_mul;
|
|
|
|
}
|
|
|
|
rpid.kP().set(current.P);
|
|
|
|
rpid.kD().set(current.D);
|
|
|
|
action = Action::IDLE_LOWER_PD;
|
|
|
|
state_change(state);
|
|
|
|
}
|
2021-03-31 20:42:19 -03:00
|
|
|
return;
|
2014-04-12 01:11:33 -03:00
|
|
|
}
|
2021-03-31 20:42:19 -03:00
|
|
|
|
|
|
|
if (new_state != ATState::IDLE) {
|
|
|
|
// starting an event
|
|
|
|
min_actuator = max_actuator = min_rate = max_rate = 0;
|
2014-04-12 01:11:33 -03:00
|
|
|
state_enter_ms = now;
|
2021-03-31 20:42:19 -03:00
|
|
|
state = new_state;
|
|
|
|
return;
|
2014-04-12 01:11:33 -03:00
|
|
|
}
|
2021-03-31 20:42:19 -03:00
|
|
|
|
|
|
|
if ((state == ATState::DEMAND_POS && max_rate < 0.01 * current.rmax_pos) ||
|
|
|
|
(state == ATState::DEMAND_NEG && min_rate > -0.01 * current.rmax_neg)) {
|
|
|
|
// we didn't get enough rate
|
|
|
|
action = Action::LOW_RATE;
|
2021-04-11 21:13:16 -03:00
|
|
|
state_change(ATState::IDLE);
|
2021-03-31 20:42:19 -03:00
|
|
|
return;
|
2014-04-12 05:21:50 -03:00
|
|
|
}
|
2014-04-12 01:11:33 -03:00
|
|
|
|
2021-03-31 20:42:19 -03:00
|
|
|
if (now - state_enter_ms < 100) {
|
|
|
|
// not long enough sample
|
|
|
|
action = Action::SHORT;
|
2021-04-11 21:13:16 -03:00
|
|
|
state_change(ATState::IDLE);
|
2021-03-31 20:42:19 -03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we've finished an event. calculate the single-event FF value
|
|
|
|
if (state == ATState::DEMAND_POS) {
|
2021-04-01 22:54:34 -03:00
|
|
|
FF_single = max_actuator / (max_rate * scaler);
|
2021-03-31 20:42:19 -03:00
|
|
|
} else {
|
2021-04-01 22:54:34 -03:00
|
|
|
FF_single = min_actuator / (min_rate * scaler);
|
2021-03-31 20:42:19 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
// apply median filter
|
2021-04-01 22:54:34 -03:00
|
|
|
float FF = ff_filter.apply(FF_single);
|
2021-03-31 20:42:19 -03:00
|
|
|
|
|
|
|
const float old_FF = rpid.ff();
|
|
|
|
|
|
|
|
// limit size of change in FF
|
|
|
|
FF = constrain_float(FF,
|
|
|
|
old_FF*(1-AUTOTUNE_DECREASE_FF_STEP*0.01),
|
|
|
|
old_FF*(1+AUTOTUNE_INCREASE_FF_STEP*0.01));
|
|
|
|
|
2021-04-03 07:57:12 -03:00
|
|
|
// did the P or D components go over 30% of total actuator?
|
2021-03-31 20:42:19 -03:00
|
|
|
const float abs_actuator = MAX(max_actuator, fabsf(min_actuator));
|
2021-04-03 07:57:12 -03:00
|
|
|
const float PD_high = 0.3 * abs_actuator;
|
2021-03-31 20:42:19 -03:00
|
|
|
bool PD_significant = (max_P > PD_high || max_D > PD_high);
|
|
|
|
|
|
|
|
// see if we overshot
|
2021-04-03 21:49:59 -03:00
|
|
|
const float dem_ratio = (state == ATState::DEMAND_POS)?
|
|
|
|
constrain_float(max_rate / max_target, 0.1, 2):
|
|
|
|
constrain_float(min_rate / min_target, 0.1, 2);
|
|
|
|
bool overshot = dem_ratio > AUTOTUNE_OVERSHOOT;
|
2021-03-31 20:42:19 -03:00
|
|
|
|
|
|
|
// adjust P and D
|
|
|
|
float D = rpid.kD();
|
|
|
|
float P = rpid.kP();
|
|
|
|
|
|
|
|
D = MAX(D, 0.0005);
|
|
|
|
P = MAX(P, 0.01);
|
|
|
|
|
|
|
|
// if the slew limiter kicked in or
|
|
|
|
if (min_Dmod < 1.0 || (overshot && PD_significant)) {
|
2021-04-03 21:49:59 -03:00
|
|
|
// we apply a gain reduction in proportion to the overshoot and dmod
|
|
|
|
const float gain_mul = (100 - AUTOTUNE_DECREASE_PD_STEP)*0.01;
|
2021-04-04 06:50:15 -03:00
|
|
|
const float dmod_mul = linear_interpolate(gain_mul, 1,
|
2021-04-03 21:49:59 -03:00
|
|
|
min_Dmod,
|
2021-04-04 06:50:15 -03:00
|
|
|
0.6, 1.0);
|
2021-04-03 21:49:59 -03:00
|
|
|
const float overshoot_mul = linear_interpolate(1, gain_mul,
|
|
|
|
dem_ratio,
|
2021-04-04 06:50:15 -03:00
|
|
|
AUTOTUNE_OVERSHOOT, 1.3 * AUTOTUNE_OVERSHOOT);
|
2021-04-03 21:49:59 -03:00
|
|
|
|
2021-03-31 20:42:19 -03:00
|
|
|
// we're overshooting or oscillating, decrease gains. We
|
|
|
|
// assume the gain that needs to be reduced is the one that
|
|
|
|
// peaked at a higher value
|
|
|
|
if (max_P < max_D) {
|
2021-04-03 21:49:59 -03:00
|
|
|
D *= dmod_mul * overshoot_mul;
|
2021-03-31 20:42:19 -03:00
|
|
|
} else {
|
2021-04-03 21:49:59 -03:00
|
|
|
P *= dmod_mul * overshoot_mul;
|
2014-04-12 01:11:33 -03:00
|
|
|
}
|
2021-03-31 20:42:19 -03:00
|
|
|
action = Action::LOWER_PD;
|
|
|
|
} else {
|
2021-04-04 06:50:15 -03:00
|
|
|
/* not oscillating or overshooting, increase the gains
|
|
|
|
|
|
|
|
The increase is based on how far we are below the slew
|
|
|
|
limit. At 80% of the limit we stop increasing gains, to
|
|
|
|
give some margin. Below 25% of the limit we apply max
|
|
|
|
increase
|
|
|
|
*/
|
|
|
|
const float slew_limit = rpid.slew_limit();
|
|
|
|
const float gain_mul = (100+AUTOTUNE_INCREASE_PD_STEP)*0.01;
|
|
|
|
const float PD_mul = linear_interpolate(gain_mul, 1,
|
|
|
|
max_SRate,
|
|
|
|
0.2*slew_limit, 0.6*slew_limit);
|
|
|
|
P *= PD_mul;
|
|
|
|
D *= PD_mul;
|
2021-03-31 20:42:19 -03:00
|
|
|
action = Action::RAISE_PD;
|
2014-04-12 01:11:33 -03:00
|
|
|
}
|
2021-03-31 20:42:19 -03:00
|
|
|
|
|
|
|
|
|
|
|
rpid.ff().set(FF);
|
|
|
|
rpid.kP().set(P);
|
|
|
|
rpid.kD().set(D);
|
2021-04-04 21:25:05 -03:00
|
|
|
rpid.kI().set(MAX(P*AUTOTUNE_I_RATIO, (FF / TRIM_TCONST)));
|
|
|
|
|
2021-03-31 20:42:19 -03:00
|
|
|
current.FF = FF;
|
|
|
|
current.P = P;
|
|
|
|
current.I = rpid.kI().get();
|
|
|
|
current.D = D;
|
|
|
|
|
|
|
|
Debug("FPID=(%.3f, %.3f, %.3f, %.3f)\n",
|
|
|
|
rpid.ff().get(),
|
|
|
|
rpid.kP().get(),
|
|
|
|
rpid.kI().get(),
|
|
|
|
rpid.kD().get());
|
|
|
|
|
2021-04-01 23:31:45 -03:00
|
|
|
// move rmax and tau towards target
|
|
|
|
update_rmax();
|
|
|
|
|
2021-04-11 21:13:16 -03:00
|
|
|
state_change(new_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
record a state change
|
|
|
|
*/
|
|
|
|
void AP_AutoTune::state_change(ATState new_state)
|
|
|
|
{
|
2021-03-31 20:42:19 -03:00
|
|
|
min_Dmod = 1;
|
2021-04-11 21:13:16 -03:00
|
|
|
max_Dmod = 0;
|
2021-04-04 06:50:15 -03:00
|
|
|
max_SRate = 0;
|
2021-03-31 20:42:19 -03:00
|
|
|
max_P = max_D = 0;
|
|
|
|
state = new_state;
|
2021-04-11 21:13:16 -03:00
|
|
|
state_enter_ms = AP_HAL::millis();
|
2014-04-12 01:11:33 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
see if we should save new values
|
|
|
|
*/
|
|
|
|
void AP_AutoTune::check_save(void)
|
|
|
|
{
|
2015-11-19 23:05:52 -04:00
|
|
|
if (AP_HAL::millis() - last_save_ms < AUTOTUNE_SAVE_PERIOD) {
|
2014-04-12 01:11:33 -03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// save the next_save values, which are the autotune value from
|
|
|
|
// the last save period. This means the pilot has
|
|
|
|
// AUTOTUNE_SAVE_PERIOD milliseconds to decide they don't like the
|
|
|
|
// gains and switch out of autotune
|
2021-03-31 20:42:19 -03:00
|
|
|
ATGains tmp = get_gains(current);
|
2014-04-12 01:11:33 -03:00
|
|
|
|
|
|
|
save_gains(next_save);
|
2021-03-31 20:42:19 -03:00
|
|
|
last_save = next_save;
|
2014-04-12 01:11:33 -03:00
|
|
|
|
|
|
|
// restore our current gains
|
2021-03-31 20:42:19 -03:00
|
|
|
set_gains(tmp);
|
2014-04-12 01:11:33 -03:00
|
|
|
|
|
|
|
// if the pilot exits autotune they get these saved values
|
|
|
|
restore = next_save;
|
|
|
|
|
|
|
|
// the next values to save will be the ones we are flying now
|
2021-03-31 20:42:19 -03:00
|
|
|
next_save = tmp;
|
2015-11-19 23:05:52 -04:00
|
|
|
last_save_ms = AP_HAL::millis();
|
2014-04-12 01:11:33 -03:00
|
|
|
}
|
|
|
|
|
2014-04-17 04:20:40 -03:00
|
|
|
/*
|
|
|
|
set a float and save a float if it has changed by more than
|
|
|
|
0.1%. This reduces the number of insignificant EEPROM writes
|
|
|
|
*/
|
2021-03-31 20:42:19 -03:00
|
|
|
void AP_AutoTune::save_float_if_changed(AP_Float &v, float value)
|
2014-04-17 04:20:40 -03:00
|
|
|
{
|
|
|
|
float old_value = v.get();
|
|
|
|
v.set(value);
|
|
|
|
if (value <= 0 || fabsf((value-old_value)/value) > 0.001f) {
|
|
|
|
v.save();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-30 09:22:13 -03:00
|
|
|
/*
|
|
|
|
set a int16 and save if changed
|
|
|
|
*/
|
2021-03-31 20:42:19 -03:00
|
|
|
void AP_AutoTune::save_int16_if_changed(AP_Int16 &v, int16_t value)
|
2014-04-30 09:22:13 -03:00
|
|
|
{
|
|
|
|
int16_t old_value = v.get();
|
|
|
|
v.set(value);
|
|
|
|
if (old_value != v.get()) {
|
|
|
|
v.save();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-12 01:11:33 -03:00
|
|
|
/*
|
|
|
|
save a set of gains
|
|
|
|
*/
|
|
|
|
void AP_AutoTune::save_gains(const ATGains &v)
|
|
|
|
{
|
2021-03-31 20:42:19 -03:00
|
|
|
ATGains tmp = current;
|
2014-04-13 02:35:52 -03:00
|
|
|
current = last_save;
|
2021-03-31 20:42:19 -03:00
|
|
|
save_float_if_changed(current.tau, v.tau);
|
|
|
|
save_int16_if_changed(current.rmax_pos, v.rmax_pos);
|
|
|
|
save_int16_if_changed(current.rmax_neg, v.rmax_neg);
|
|
|
|
save_float_if_changed(rpid.ff(), v.FF);
|
|
|
|
save_float_if_changed(rpid.kP(), v.P);
|
|
|
|
save_float_if_changed(rpid.kI(), v.I);
|
|
|
|
save_float_if_changed(rpid.kD(), v.D);
|
|
|
|
save_float_if_changed(rpid.kIMAX(), v.IMAX);
|
|
|
|
last_save = get_gains(current);
|
|
|
|
current = tmp;
|
2014-04-12 01:11:33 -03:00
|
|
|
}
|
2014-04-12 05:21:50 -03:00
|
|
|
|
2021-03-31 20:42:19 -03:00
|
|
|
/*
|
|
|
|
get gains with PID components
|
|
|
|
*/
|
|
|
|
AP_AutoTune::ATGains AP_AutoTune::get_gains(const ATGains &v)
|
2014-04-12 05:21:50 -03:00
|
|
|
{
|
2021-03-31 20:42:19 -03:00
|
|
|
ATGains ret = v;
|
|
|
|
ret.FF = rpid.ff();
|
|
|
|
ret.P = rpid.kP();
|
|
|
|
ret.I = rpid.kI();
|
|
|
|
ret.D = rpid.kD();
|
|
|
|
ret.IMAX = rpid.kIMAX();
|
|
|
|
return ret;
|
|
|
|
}
|
2014-04-12 05:21:50 -03:00
|
|
|
|
2021-03-31 20:42:19 -03:00
|
|
|
/*
|
|
|
|
set gains with PID components
|
|
|
|
*/
|
|
|
|
void AP_AutoTune::set_gains(const ATGains &v)
|
|
|
|
{
|
|
|
|
current = v;
|
|
|
|
rpid.ff().set(v.FF);
|
|
|
|
rpid.kP().set(v.P);
|
|
|
|
rpid.kI().set(v.I);
|
|
|
|
rpid.kD().set(v.D);
|
|
|
|
rpid.kIMAX().set(v.IMAX);
|
2014-04-12 05:21:50 -03:00
|
|
|
}
|
2021-04-01 23:31:45 -03:00
|
|
|
|
2021-04-02 16:44:10 -03:00
|
|
|
/*
|
|
|
|
update RMAX and TAU parameters on each step. We move them gradually
|
|
|
|
towards the target to allow for a user going straight to a level 10
|
|
|
|
tune while starting with a poorly tuned plane
|
|
|
|
*/
|
2021-04-01 23:31:45 -03:00
|
|
|
void AP_AutoTune::update_rmax(void)
|
|
|
|
{
|
2021-04-02 23:13:23 -03:00
|
|
|
uint8_t level = constrain_int32(aparm.autotune_level, 0, ARRAY_SIZE(tuning_table));
|
2021-04-02 16:44:10 -03:00
|
|
|
|
2021-04-02 23:13:23 -03:00
|
|
|
int16_t target_rmax;
|
|
|
|
float target_tau;
|
|
|
|
|
|
|
|
if (level == 0) {
|
|
|
|
// this level means to keep current values of RMAX and TCONST
|
|
|
|
target_rmax = constrain_float(current.rmax_pos, 75, 720);
|
2021-04-08 03:36:32 -03:00
|
|
|
target_tau = constrain_float(current.tau, 0.1, 2);
|
2021-04-02 23:13:23 -03:00
|
|
|
} else {
|
|
|
|
target_rmax = tuning_table[level-1].rmax;
|
|
|
|
target_tau = tuning_table[level-1].tau;
|
|
|
|
}
|
2021-04-02 16:44:10 -03:00
|
|
|
|
2021-04-08 03:36:32 -03:00
|
|
|
if (level > 0 && is_positive(current.FF)) {
|
|
|
|
const float invtau = ((1.0f / target_tau) + (current.I / current.FF));
|
|
|
|
if (is_positive(invtau)) {
|
|
|
|
target_tau = 1.0f / invtau;
|
|
|
|
}
|
2021-04-04 21:25:05 -03:00
|
|
|
}
|
|
|
|
|
2021-04-01 23:31:45 -03:00
|
|
|
if (current.rmax_pos == 0) {
|
|
|
|
// conservative initial value
|
|
|
|
current.rmax_pos.set(75);
|
|
|
|
}
|
2021-04-02 16:44:10 -03:00
|
|
|
// move RMAX by 20 deg/s per step
|
2021-04-01 23:31:45 -03:00
|
|
|
current.rmax_pos.set(constrain_int32(target_rmax,
|
|
|
|
current.rmax_pos.get()-20,
|
|
|
|
current.rmax_pos.get()+20));
|
2021-04-02 23:13:23 -03:00
|
|
|
|
|
|
|
if (level != 0 || current.rmax_neg.get() == 0) {
|
|
|
|
current.rmax_neg.set(current.rmax_pos.get());
|
|
|
|
}
|
2021-04-01 23:31:45 -03:00
|
|
|
|
|
|
|
// move tau by max 15% per loop
|
|
|
|
current.tau.set(constrain_float(target_tau,
|
|
|
|
current.tau*0.85,
|
|
|
|
current.tau*1.15));
|
|
|
|
}
|