Made for physics classes using plotly and dash.
- Clone project.
- Open terminal and go to
./web_app
folder. - Install requirements.txt:
pip install requirements.txt
. - Run project using
py fizyka_web.py
.
- Set how many vector equations You want to show.
- Set last
t
value to calculate (x and y axis boundaries will also be calculated based on that). - Set frequency of calculated points.
- Set duration of each frame.
- Set values of each vector equation, where A is x axis, B is y axis. Only allowed variable is "t". Use js syntax for equations.
- Example:
- A:
t
- B:
5 * t - (1/2) * 9.81 * t**2