Compare commits

..

2 commits

Author SHA1 Message Date
luc
fe077dfc02 Merge branch 'update_constant' 2026-09-10 15:51:42 +02:00
luc
e7efccaaae simulation.py: update 2026-09-10 15:33:58 +02:00

View file

@ -1,7 +1,7 @@
# a funny python file # a funny python file
# Simulation of a falling body on Earth # Simulation of a falling body on Earth
ACCELERATION_G = 9.8 # m/s^2 ACCELERATION_G = 9.80665 # m/s^2
TIME = 5.0 # seconds TIME = 5.0 # seconds
def calculate_displacement(g, t): def calculate_displacement(g, t):