mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-05-28 18:56:58 +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:
@@ -11,7 +11,7 @@
|
|||||||
* @decimal 2
|
* @decimal 2
|
||||||
* @group Airspeed Validator
|
* @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
|
* Wind estimator true airspeed scale process noise spectral density
|
||||||
@@ -63,7 +63,7 @@ PARAM_DEFINE_FLOAT(ASPD_BETA_NOISE, 0.15f);
|
|||||||
* @unit SD
|
* @unit SD
|
||||||
* @group Airspeed Validator
|
* @group Airspeed Validator
|
||||||
*/
|
*/
|
||||||
PARAM_DEFINE_INT32(ASPD_TAS_GATE, 3);
|
PARAM_DEFINE_INT32(ASPD_TAS_GATE, 4);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gate size for sideslip angle fusion
|
* Gate size for sideslip angle fusion
|
||||||
|
|||||||
Reference in New Issue
Block a user