Skip to content
Snippets Groups Projects
Commit 056ac3c9 authored by Paul Riseborough's avatar Paul Riseborough Committed by Lorenz Meier
Browse files

EKF: Update default value for sideslip fusion noise

Use value obtained from tuning on replay logs
parent 680a8f0b
No related branches found
No related tags found
No related merge requests found
......@@ -208,7 +208,7 @@ private:
control::BlockParamExtFloat _mag_heading_noise; // measurement noise used for simple heading fusion
control::BlockParamExtFloat _mag_noise; // measurement noise used for 3-axis magnetoemter fusion (Gauss)
control::BlockParamExtFloat _eas_noise; // measurement noise used for airspeed fusion (std m/s)
control::BlockParamExtFloat _beta_noise; // synthetic sideslip noise (m/s)
control::BlockParamExtFloat _beta_noise; // synthetic sideslip noise (m/s)
control::BlockParamExtFloat _mag_declination_deg;// magnetic declination in degrees
control::BlockParamExtFloat _heading_innov_gate;// innovation gate for heading innovation test
control::BlockParamExtFloat _mag_innov_gate; // innovation gate for magnetometer innovation test
......
......@@ -387,15 +387,16 @@ PARAM_DEFINE_FLOAT(EKF2_MAG_NOISE, 5.0e-2f);
PARAM_DEFINE_FLOAT(EKF2_EAS_NOISE, 1.4f);
/**
* Noise for syntetic sideslip fusion.
* Noise for synthetic sideslip fusion.
*
* @group EKF2
* @min 0.5
* @max 5.0
* @min 0.1
* @max 1.0
* @unit m/s
* @decimal 1
* @decimal 2
*/
PARAM_DEFINE_FLOAT(EKF2_BETA_NOISE, 5.0f);
PARAM_DEFINE_FLOAT(EKF2_BETA_NOISE, 0.3f);
/**
* Magnetic declination
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment