simulation.py: update #1

Manually merged
luc merged 1 commit from update_constant into main 2026-09-10 15:52:05 +02:00
Showing only changes of commit e7efccaaae - Show all commits

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 = 10 # 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):