You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You need to include a plt.show() or plt.save() at the end to actually show the plot
You need to put the main code, which initiates all the action, into the __main__ condition, to execute it when you run it as a script from the command line (https://docs.python.org/3/library/__main__.html)
Add some code comments, what those parameters you specify actually physically mean
Some feedback for the
Fall_only_model.py
:__main__
condition, to execute it when you run it as a script from the command line (https://docs.python.org/3/library/__main__.html)t
but ratherdt
. For the start, its sufficient to use a constant step size to integrate the physical system. Later, if you would introduce more nonlinear dynamics, you might want to use this solver for your system: https://docs.scipy.org/doc/scipy/reference/generated/scipy.integrate.solve_ivp.htmlI think its a good start and I am excited to see where you will take the project
The text was updated successfully, but these errors were encountered: