This repository was archived by the owner on Aug 13, 2020. It is now read-only.
This repository was archived by the owner on Aug 13, 2020. It is now read-only.
Simulation stability #89
Open
Description
Right now the simulation stability completely rests on the user's selected time step. For instance, let's reduce the time step in example_005.ipynb just replacing
N = tfin * 100 + 1
by
N = tfin * 10 + 1
and enjoy the arising instabilities at the end of the simulation (you may also increase tfin
to 200 seconds if you wanna crash your plane :-) )
I don't know much about flight dynamics, but probably a Courant condition can be optionally imposed. Right?