-
Notifications
You must be signed in to change notification settings - Fork 13
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
Online Sys ID #188
Comments
Hi Bruno, That is a great question! Currently we have been focusing on laying the ground work to estimate the parameters offline which allows the user to get a base dynamics model before starting a flight mission. But as you point out there can be cases where those parameters could change during the operation of the UAV. But I don't think that the current software infrastructure with the python package for parametric model estimation in Quadrotors generally use model free PID approaches on the lower controller levels. Therefore that functionality can be performed independent of the dynamics estimation in this repository. For some more advanced model based controllers (e.g. MPC) this could indeed be interesting, but the tuning there is usually specific to the chosen approach. You are welcome to share your ideas or plans for any project regarding online SysID and we are happy to answer any further questions about the work in this repository. Best, |
Also regarding autotuning in the context of PX4 you can have a look at the documentation here: |
Thank you Manuel for the link and your insight. The auto-tune would be mainly for MPC or any other trajectory tracking controller ,for example geometric controller on @Jaeyoung-Lim repository. |
That sounds like a really nice idea and it would of course make us very happy to see our work being able to contribute to such an effort! I am happy to answer any questions provide some support regarding such a project. But from my side I think I don't have the time to work proactively towards online SysID. I am sure @Jaeyoung-Lim will ad his perspective here later on. |
@brunopinto900 I believe @manumerous have already explained it quite well, but adding a few cents. This project processes data in batches from a log file, and therefore cannot be used recursively online at its current state. However it would definitely be interesting to compare how recursive data processing effects the accuracy of the estimated results or even if we can use them in a complementary way. (sysID input shaping depending on the recursive parameter estimates). On the autotuning aspect, it would definitely interesting if the model created by this repo can nicely scale into model based controller schemes. |
I will close this issue for now, feel free to reopen it if you have additional questions. |
Hello all,
This repository allows to estimate a quadrotor's parameters based on logs. Are there any plans to perform online system identification? Think about the following examples:
The idea is to estimate the parameters online and tune the controllers automatically.
Thank you.
The text was updated successfully, but these errors were encountered: