From e7efccaaae0249669cbe55bd7450c53a063013e7 Mon Sep 17 00:00:00 2001 From: luc Date: Thu, 10 Sep 2026 15:33:58 +0200 Subject: [PATCH] simulation.py: update --- simulation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simulation.py b/simulation.py index 542b501..48fcef6 100644 --- a/simulation.py +++ b/simulation.py @@ -1,7 +1,7 @@ # a funny python file # Simulation of a falling body on Earth -ACCELERATION_G = 10 # m/s^2 +ACCELERATION_G = 9.80665 # m/s^2 TIME = 5.0 # seconds def calculate_displacement(g, t):