Fix bug in Lunar: wrong capsule weight.

Must be 32500 lbs, not 33000.
This commit is contained in:
Serge Vakulenko
2023-07-14 14:19:05 -07:00
parent 2aed1da9ac
commit 52e1bf4998
3 changed files with 3 additions and 3 deletions

View File

@@ -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