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

Mahony filter k_I parameter not used correctly #36

Open
aftersomemath opened this issue Apr 23, 2021 · 4 comments
Open

Mahony filter k_I parameter not used correctly #36

aftersomemath opened this issue Apr 23, 2021 · 4 comments

Comments

@aftersomemath
Copy link

aftersomemath commented Apr 23, 2021

In the documentation of the Mahony filter it is stated that \dot{\hat{q}} is a function of \hat{b} where \hat{b} results from integrating -k_I * w_{meas}.

Howevever, in the code we have:

omega_mes = np.cross(acc/a_norm, v_a)   # Cost function (eqs. 32c and 48a)
b = -self.k_I*omega_mes                 # Estimated Gyro bias (eq. 48c)
Omega = Omega - b + self.k_P*omega_mes  # Gyro correction
p = np.array([0.0, *Omega])
qDot = 0.5*q_prod(q, p)                     # Rate of change of quaternion (eqs. 45 and 48b)

Which does not contain an integration of the b_dot term. In essence, the integral term is disabled (k_I = 0) and k_P has been set to (k_P - k_I). Perhaps the code should be updated to something like:

omega_mes = np.cross(acc/a_norm, v_a)   # Cost function (eqs. 32c and 48a)

bDot = -self.k_I*omega_mes                 # Estimated Gyro bias (eq. 48c)
self.b += bDot * self.Dt

Omega = Omega - self.b + self.k_P*omega_mes  # Gyro correction
p = np.array([0.0, *Omega])
qDot = 0.5*q_prod(q, p)                     # Rate of change of quaternion (eqs. 45 and 48b)

I am happy to make the changes if there is consensus.

@aftersomemath aftersomemath changed the title Mahoney filter "b" not calculated via integration Mahoney filter "b" value not calculated via integration Apr 23, 2021
@aftersomemath aftersomemath changed the title Mahoney filter "b" value not calculated via integration Mahoney filter k_I parameter not used correctly Apr 23, 2021
@aftersomemath aftersomemath changed the title Mahoney filter k_I parameter not used correctly Mahony filter k_I parameter not used correctly Apr 23, 2021
@ineshtyne
Copy link

ineshtyne commented May 2, 2021

@aftersomemath thank you for your remark! Could you tell me please how did you initialised your b? and do you have any tipps how to optimally chose the K_I & K_P?

@aftersomemath
Copy link
Author

aftersomemath commented May 4, 2021

It seems it would be as easy as adding a b0 parameter to the constructor as is done with q0. That b0 should be used in _compute_all. Then the updateIMU and updateMARG functions should be updated to accept the current value of b as a function parameter and then return the updated b value as is done with q.

I haven't checked to see how states other than q are handled in the other estimators provided by this package. It is possible there is another pattern to follow.

Sorry I am not an expert on choosing the gains for a Mahony filter. If you setup an optimization problem, you can brute force the problem with grid search on a range of K_I and K_P. Then choose the K_I and K_P that result in the lowest error (perhaps RMS^2 error for instance). However, a ground truth orientation source will be needed for that.

@timethy
Copy link

timethy commented Mar 17, 2022

Hi, I've created a pull request to address this.

I also optimized some of the code to make it a bit faster, if wanted, I'm happy to create a PR for that as well.

@timethy
Copy link

timethy commented Mar 21, 2022

This should be fixed now.

@ineshtyne a good way of getting your first bias b is to simply record some seconds of stationary data.

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

3 participants