This commit is contained in:
2025-11-08 11:16:24 +05:00
parent 81c60f2c70
commit 760fb43e62
16 changed files with 2798 additions and 257 deletions

14
app/src/test.py Normal file
View File

@@ -0,0 +1,14 @@
import math
v=20#скорость
p=21.5#необходимы путь
g=10#ускорение свободного падения
t_par=v/g
h_pod=(v**2)/(2*g)
h_main=p-h_pod
t_pod1=g/2
t_pod2=math.sqrt(h_main/t_pod1)
t=t_pod2-t_par
pass