mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
AirspeedValidator: make wind estimate more dynamic
Increase wind process noise default (ASPD_WIND_NSD) and gate (ASPD_TAS_GATE) to be able to catch rapid wind increases with the internal wind estimator of the airspeed validator. Signed-off-by: Silvan Fuhrer <silvan@auterion.com>
This commit is contained in:
parent
041e5069cb
commit
29714a0fba
@ -11,7 +11,7 @@
|
||||
* @decimal 2
|
||||
* @group Airspeed Validator
|
||||
*/
|
||||
PARAM_DEFINE_FLOAT(ASPD_WIND_NSD, 1.e-2f);
|
||||
PARAM_DEFINE_FLOAT(ASPD_WIND_NSD, 1.e-1f);
|
||||
|
||||
/**
|
||||
* Wind estimator true airspeed scale process noise spectral density
|
||||
@ -63,7 +63,7 @@ PARAM_DEFINE_FLOAT(ASPD_BETA_NOISE, 0.15f);
|
||||
* @unit SD
|
||||
* @group Airspeed Validator
|
||||
*/
|
||||
PARAM_DEFINE_INT32(ASPD_TAS_GATE, 3);
|
||||
PARAM_DEFINE_INT32(ASPD_TAS_GATE, 4);
|
||||
|
||||
/**
|
||||
* Gate size for sideslip angle fusion
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user