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

IIR filter coefficients set incorrectly #854

Open
juhaszp95 opened this issue Mar 11, 2024 · 5 comments
Open

IIR filter coefficients set incorrectly #854

juhaszp95 opened this issue Mar 11, 2024 · 5 comments

Comments

@juhaszp95
Copy link

Hello,

Thanks for keeping up the development of the stabilizer. I've just tried to set a low-pass filter using your script at https://github.com/quartiq/stabilizer/blob/main/py/stabilizer/iir_coefficients.py, but I think the IIR BA coefficients are returned with the wrong sign. Specifically, lines 59-61 say

#     Returns:
#       [b0, b1, b2, -a1, -a2] IIR coefficients to be programmed into a
#       Stabilizer IIR filter configuration.

However, in line 144, it's actually +a1, not -a1 being returned. Therefore, this implements the wrong filter.

It seems to me that this is a problem for all filters (+a_i returned instead of -a_i), but it seems OK for the PID (I haven't tested yet).

I'm not a 100% sure why -a_i needs to be sent to the stabilizer, but when I change a1 to -a1 in line 144 I do get the expected, correct behaviour - so it's probably just a matter of updating the Python script.

@jordens
Copy link
Member

jordens commented Mar 11, 2024

iir_coefficients is out of date w.r.t. recent changes in idsp.

@juhaszp95
Copy link
Author

Is there any chance you could release a temporary fix for this coefficient sign issue while presumably a more general rewrite lands?

@juhaszp95
Copy link
Author

Further to the above, I think the PID coefficients are also returned with the wrong sign, and the b0 coefficient of the high-pass filter is wrong (it has an extra factor of f0_bar in the numerator).

Furthermore, I'd like to get the PID setpoint (the x offset) working, which it seem to me is not implemented in the this python file - I wonder if there is any description somewhere regarding how that could be done?

@jordens
Copy link
Member

jordens commented Apr 9, 2024

Some background on PID/IIRs is here: https://hackmd.io/IACbwcOTSt6Adj3_F9bKuw
A proven implementation is here: https://github.com/quartiq/idsp/blob/main/src/iir/pid.rs
while the underlying Biquad impl that dual-iir uses is this: https://github.com/quartiq/idsp/blob/main/src/iir/biquad.rs
It's on my list to get iir_coefficients back up to speed (i.e. to the state that idsp is in).

@juhaszp95
Copy link
Author

Thanks very much! I've already read the PID primer which was very useful. I'm less familiar with Rust, hence the need for the python interface.

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