Using Aviary to only simulate and not optimize a specified mission #499
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
By default Aviary uses the collocation method to solve the trajectory - this method is powerful, but always requires optimization, as that is how the method also ensure that the chosen trajectory is feasible. In your case, since you don't mind if a trajectory isn't optimal, just feasible, a shooting method is what you want to use. We have a mostly complete implementation of the SGM method in Aviary, but it has some limitations (search the docs for "SGM" for specifics). Try following along with this example, which uses the Level 2 Python interface |
Beta Was this translation helpful? Give feedback.
By default Aviary uses the collocation method to solve the trajectory - this method is powerful, but always requires optimization, as that is how the method also ensure that the chosen trajectory is feasible. In your case, since you don't mind if a trajectory isn't optimal, just feasible, a shooting method is what you want to use. We have a mostly complete implementation of the SGM method in Aviary, but it has some limitations (search the docs for "SGM" for specifics).
Try following along with this example, which uses the Level 2 Python interface