mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-05-31 18:47:21 +08:00
EKF: Set better default gains
This commit is contained in:
@@ -214,23 +214,23 @@ PARAM_DEFINE_FLOAT(PE_ACC_PNOISE, 0.25f);
|
|||||||
* Generic defaults: 1e-07f, multicopters: 1e-07f, ground vehicles: 1e-07f.
|
* Generic defaults: 1e-07f, multicopters: 1e-07f, ground vehicles: 1e-07f.
|
||||||
* Increasing this value will make the gyro bias converge faster but noisier.
|
* Increasing this value will make the gyro bias converge faster but noisier.
|
||||||
*
|
*
|
||||||
* @min 0.0000001
|
* @min 0.00000005
|
||||||
* @max 0.00001
|
* @max 0.00001
|
||||||
* @group Position Estimator
|
* @group Position Estimator
|
||||||
*/
|
*/
|
||||||
PARAM_DEFINE_FLOAT(PE_GBIAS_PNOISE, 1e-06f);
|
PARAM_DEFINE_FLOAT(PE_GBIAS_PNOISE, 1e-07f);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Accelerometer bias estimate process noise
|
* Accelerometer bias estimate process noise
|
||||||
*
|
*
|
||||||
* Generic defaults: 0.0001f, multicopters: 0.0001f, ground vehicles: 0.0001f.
|
* Generic defaults: 0.00001f, multicopters: 0.00001f, ground vehicles: 0.00001f.
|
||||||
* Increasing this value makes the bias estimation faster and noisier.
|
* Increasing this value makes the bias estimation faster and noisier.
|
||||||
*
|
*
|
||||||
* @min 0.00001
|
* @min 0.00001
|
||||||
* @max 0.001
|
* @max 0.001
|
||||||
* @group Position Estimator
|
* @group Position Estimator
|
||||||
*/
|
*/
|
||||||
PARAM_DEFINE_FLOAT(PE_ABIAS_PNOISE, 0.0002f);
|
PARAM_DEFINE_FLOAT(PE_ABIAS_PNOISE, 1e-05f);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Magnetometer earth frame offsets process noise
|
* Magnetometer earth frame offsets process noise
|
||||||
|
|||||||
Reference in New Issue
Block a user