AP_NavEKF3: Improve protection against GPS glitches during yaw alignment

This commit is contained in:
Paul Riseborough 2023-04-16 10:14:31 +10:00 committed by Andrew Tridgell
parent dfd6e6d8ac
commit df2f8366c5
5 changed files with 39 additions and 15 deletions

View File

@ -231,6 +231,7 @@ void NavEKF3_core::setAidingMode()
{ {
PV_AidingMode = AID_NONE; PV_AidingMode = AID_NONE;
yawAlignComplete = false; yawAlignComplete = false;
yawAlignGpsValidCount = 0;
finalInflightYawInit = false; finalInflightYawInit = false;
ResetVelocity(resetDataSource::DEFAULT); ResetVelocity(resetDataSource::DEFAULT);
ResetPosition(resetDataSource::DEFAULT); ResetPosition(resetDataSource::DEFAULT);

View File

@ -134,7 +134,7 @@ void NavEKF3_core::realignYawGPS(bool emergency_reset)
Vector3F eulerAngles; Vector3F eulerAngles;
stateStruct.quat.to_euler(eulerAngles.x, eulerAngles.y, eulerAngles.z); stateStruct.quat.to_euler(eulerAngles.x, eulerAngles.y, eulerAngles.z);
if (gpsDataDelayed.vel.xy().length_squared() > 25.0f) { if (gpsDataDelayed.vel.xy().length_squared() > sq(GPS_VEL_YAW_ALIGN_MIN_SPD)) {
// calculate course yaw angle // calculate course yaw angle
ftype velYaw = atan2F(stateStruct.velocity.y,stateStruct.velocity.x); ftype velYaw = atan2F(stateStruct.velocity.y,stateStruct.velocity.x);
@ -160,25 +160,36 @@ void NavEKF3_core::realignYawGPS(bool emergency_reset)
const ftype gpsVelAcc = fmaxF(gpsSpdAccuracy, ftype(frontend->_gpsHorizVelNoise)); const ftype gpsVelAcc = fmaxF(gpsSpdAccuracy, ftype(frontend->_gpsHorizVelNoise));
const ftype gps_yaw_variance = sq(asinF(constrain_float(gpsVelAcc/gpsDataDelayed.vel.xy().length(), -1.0F, 1.0F))); const ftype gps_yaw_variance = sq(asinF(constrain_float(gpsVelAcc/gpsDataDelayed.vel.xy().length(), -1.0F, 1.0F)));
// keep roll and pitch and reset yaw if (gps_yaw_variance < sq(radians(GPS_VEL_YAW_ALIGN_MAX_ANG_ERR))) {
rotationOrder order; yawAlignGpsValidCount++;
bestRotationOrder(order); } else {
resetQuatStateYawOnly(gpsYaw, gps_yaw_variance, order); yawAlignGpsValidCount = 0;
}
// reset the velocity and position states as they will be inaccurate due to bad yaw if (yawAlignGpsValidCount >= GPS_VEL_YAW_ALIGN_COUNT_THRESHOLD) {
ResetVelocity(resetDataSource::GPS); yawAlignGpsValidCount = 0;
ResetPosition(resetDataSource::GPS); // keep roll and pitch and reset yaw
rotationOrder order;
bestRotationOrder(order);
resetQuatStateYawOnly(gpsYaw, gps_yaw_variance, order);
// send yaw alignment information to console // reset the velocity and position states as they will be inaccurate due to bad yaw
GCS_SEND_TEXT(MAV_SEVERITY_INFO, "EKF3 IMU%u yaw aligned to GPS velocity",(unsigned)imu_index); ResetVelocity(resetDataSource::GPS);
ResetPosition(resetDataSource::GPS);
if (use_compass()) { // send yaw alignment information to console
// request a mag field reset which may enable us to use the magnetometer if the previous fault was due to bad initialisation GCS_SEND_TEXT(MAV_SEVERITY_INFO, "EKF3 IMU%u yaw aligned to GPS velocity",(unsigned)imu_index);
magStateResetRequest = true;
// clear the all sensors failed status so that the magnetometers sensors get a second chance now that we are flying if (use_compass()) {
allMagSensorsFailed = false; // request a mag field reset which may enable us to use the magnetometer if the previous fault was due to bad initialisation
magStateResetRequest = true;
// clear the all sensors failed status so that the magnetometers sensors get a second chance now that we are flying
allMagSensorsFailed = false;
}
} }
} }
} else {
yawAlignGpsValidCount = 0;
} }
} }

View File

@ -303,6 +303,7 @@ void NavEKF3_core::readMagData()
// force a new yaw alignment 1s after learning completes. The // force a new yaw alignment 1s after learning completes. The
// delay is to ensure any buffered mag samples are discarded // delay is to ensure any buffered mag samples are discarded
yawAlignComplete = false; yawAlignComplete = false;
yawAlignGpsValidCount = 0;
InitialiseVariablesMag(); InitialiseVariablesMag();
} }

View File

@ -281,6 +281,7 @@ void NavEKF3_core::InitialiseVariables()
tiltErrorVariance = sq(M_2PI); tiltErrorVariance = sq(M_2PI);
tiltAlignComplete = false; tiltAlignComplete = false;
yawAlignComplete = false; yawAlignComplete = false;
yawAlignGpsValidCount = 0;
have_table_earth_field = false; have_table_earth_field = false;
stateIndexLim = 23; stateIndexLim = 23;
last_gps_idx = 0; last_gps_idx = 0;

View File

@ -115,6 +115,15 @@
#define DOWNWARD_RANGEFINDER_MAX_INSTANCES 1 #define DOWNWARD_RANGEFINDER_MAX_INSTANCES 1
#endif #endif
// number of continuous valid GPS velocity samples required to reset yaw
#define GPS_VEL_YAW_ALIGN_COUNT_THRESHOLD 5
// minimum GPS horizontal speed required to use GPS ground course for yaw alignment (m/s)
#define GPS_VEL_YAW_ALIGN_MIN_SPD 5.0F
// maximum GPs ground course uncertainty allowed for yaw alignment (deg)
#define GPS_VEL_YAW_ALIGN_MAX_ANG_ERR 15.0F
class NavEKF3_core : public NavEKF_core_common class NavEKF3_core : public NavEKF_core_common
{ {
public: public:
@ -1116,6 +1125,7 @@ private:
uint32_t lastYawReset_ms; // System time at which the last yaw reset occurred. Returned by getLastYawResetAngle uint32_t lastYawReset_ms; // System time at which the last yaw reset occurred. Returned by getLastYawResetAngle
bool tiltAlignComplete; // true when tilt alignment is complete bool tiltAlignComplete; // true when tilt alignment is complete
bool yawAlignComplete; // true when yaw alignment is complete bool yawAlignComplete; // true when yaw alignment is complete
uint8_t yawAlignGpsValidCount; // number of continuous good GPS velocity samples used for in flight yaw alignment
bool magStateInitComplete; // true when the magnetic field states have been initialised bool magStateInitComplete; // true when the magnetic field states have been initialised
uint8_t stateIndexLim; // Max state index used during matrix and array operations uint8_t stateIndexLim; // Max state index used during matrix and array operations
imu_elements imuDataDelayed; // IMU data at the fusion time horizon imu_elements imuDataDelayed; // IMU data at the fusion time horizon