Hello
I am working on an optimization problem using Acados where the constraints on the control variables need to change dynamically based on external conditions. Specifically; I want to modify upper and lower bounds on inputs in real-time without restarting the solver.
While I understand that constraints are typically defined during problem setup; Iām unsure of the best way to update them efficiently during execution.
Is there a built-in method in Acados to adjust constraints on the fly, or do I need to reinitialize the solver each time constraints change? Would modifying the acados_ocp
structure & calling acados_update
be sufficient / is there another recommended approach? Performance is a key concern; so Iād like to avoid unnecessary recomputations if possible.
Checked Python Interface ā acados documentationTalend Course guide related to this and found it quite informative.
If anyone has implemented similar dynamic constraint handling in Acados; Iād appreciate insights into how you structured your solution. Are there specific functions / examples that demonstrate this capability? Any guidance on best practices would be really helpful!
Thank you !!