mirror of https://github.com/ArduPilot/ardupilot
AP_Control: apply pitch rate limit to turn coordination
At high bank angles, for example when rolling to/from inverted, a large turn coordination pitch rate offset is requested. Before this patch, this offset was not subject to the configured pitch rate limit, which could result in pitch controller integrator windup.
This commit is contained in:
parent
9c8648d99c
commit
1d634cc2be
|
@ -301,19 +301,16 @@ int32_t AP_PitchController::get_servo_out(int32_t angle_err, float scaler, bool
|
|||
// as the rates will be tuned when upright, and it is common that
|
||||
// much higher rates are needed inverted
|
||||
if (!inverted) {
|
||||
desired_rate += rate_offset;
|
||||
if (gains.rmax_neg && desired_rate < -gains.rmax_neg) {
|
||||
desired_rate = -gains.rmax_neg;
|
||||
} else if (gains.rmax_pos && desired_rate > gains.rmax_pos) {
|
||||
desired_rate = gains.rmax_pos;
|
||||
}
|
||||
} else {
|
||||
// Make sure not to invert the turn coordination offset
|
||||
desired_rate = -desired_rate + rate_offset;
|
||||
}
|
||||
|
||||
if (inverted) {
|
||||
desired_rate = -desired_rate;
|
||||
}
|
||||
|
||||
// Apply the turn correction offset
|
||||
desired_rate = desired_rate + rate_offset;
|
||||
|
||||
/*
|
||||
when we are past the users defined roll limit for the aircraft
|
||||
|
|
Loading…
Reference in New Issue