-
Dear team of NaveGo, In addition, can the all state quantities be set to 0 (including gyro bias and acceleration bias) before the input of kalman filter, and then set to 0 during state correction. Thank you and look forward to your reply. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
Hi, The bias is modeled as having a constant part (static, xb_sta) and a changing part (dynamic, xb_dyn), which is quite convenient when dealing with noisy IMUs. The imu.gb_std and imu.ab_std, standard deviations, are used for simulating the inertial sensors. You should modify imu.arw and imu.vrw, respectively, to set the level of noise of your inertial sensors to adjust the performance of your navigation system. The kf.xp(1:9) states are the only error states (Δx) and are set to zero before each Kalman filter iteration. The rest of the states, kf.xp(10:15), are not error states since they are used for both biases estimation and correction. Kind regards. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
Hi,
The bias is modeled as having a constant part (static, xb_sta) and a changing part (dynamic, xb_dyn), which is quite convenient when dealing with noisy IMUs.
The imu.gb_std and imu.ab_std, standard deviations, are used for simulating the inertial sensors. You should modify imu.arw and imu.vrw, respectively, to set the level of noise of your inertial sensors to adjust the performance of your navigation system.
The kf.xp(1:9) states are the only error states (Δx) and are set to zero before each Kalman filter iteration. The rest of the states, kf.xp(10:15), are not error states since they are used for both biases estimation and correction.
Kind regards.