mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-30 06:31:46 -08:00
Fix bug in Lunar: wrong capsule weight.
Must be 32500 lbs, not 33000.
This commit is contained in:
@@ -127,7 +127,7 @@ class SimulationClock:
|
||||
class Capsule:
|
||||
altitude: float = 120 # in miles above the surface
|
||||
velocity: float = 1 # downward
|
||||
m: float = 33000 # mass_with_fuel
|
||||
m: float = 32500 # mass_with_fuel
|
||||
n: float = 16500 # mass_without_fuel
|
||||
g: float = 1e-3
|
||||
z: float = 1.8
|
||||
|
||||
Reference in New Issue
Block a user