Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IMU Errror jacobian #4

Open
cumtchenchang opened this issue Jan 30, 2024 · 1 comment
Open

IMU Errror jacobian #4

cumtchenchang opened this issue Jan 30, 2024 · 1 comment

Comments

@cumtchenchang
Copy link

Hi:
In IMUError.cpp, const double sigma2_p = 0.5 * dt * dt * sigma2_v;
is const double sigma2_p = 0.25 * dt * dt * sigma2_v?
Thank you

@JzHuai0108
Copy link
Owner

JzHuai0108 commented Jan 30, 2024

The contribution of accelerometer noise (of continuous time noise magnitude sigma_a_c) on the covariance of the position from t1 to t2 can be computed by the double integral.
\int_t1^t2 sigma_a_c^2 (\int_\tau^t2 du)^2 d\tau = sigma_a_c^2 * 0.5 * (t2- t1)^3. (用梯形法算的)。 如果精确的算是 sigma_a_c^2 * 0.33 * (t2- t1)^3
For more info, see my thesis eq (4.31) on page 102 and eq (A.25) on page 194.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants