mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
APM_Control: Correct use of deceleration
This commit is contained in:
parent
184318794f
commit
44b3016496
@ -1058,15 +1058,14 @@ float AR_AttitudeControl::get_desired_speed_accel_limited(float desired_speed, f
|
|||||||
float AR_AttitudeControl::get_stopping_distance(float speed) const
|
float AR_AttitudeControl::get_stopping_distance(float speed) const
|
||||||
{
|
{
|
||||||
// get maximum vehicle deceleration
|
// get maximum vehicle deceleration
|
||||||
const float accel_max = get_accel_max();
|
const float decel_max = get_decel_max();
|
||||||
|
|
||||||
// avoid divide by zero
|
if ((decel_max <= 0.0f) || is_zero(speed)) {
|
||||||
if ((accel_max <= 0.0f) || is_zero(speed)) {
|
|
||||||
return 0.0f;
|
return 0.0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
// assume linear deceleration
|
// assume linear deceleration
|
||||||
return 0.5f * sq(speed) / accel_max;
|
return 0.5f * sq(speed) / decel_max;
|
||||||
}
|
}
|
||||||
|
|
||||||
// relax I terms of throttle and steering controllers
|
// relax I terms of throttle and steering controllers
|
||||||
|
Loading…
Reference in New Issue
Block a user