Align constants along decimal point

This commit is contained in:
XANTRONIX 2025-03-13 00:45:06 -04:00
parent 83e8b1a7c1
commit 8ee17da826

View file

@ -85,7 +85,7 @@ def lapse(temp: float, delta: float, rate=LAPSE_RATE_DRY) -> float:
def moist_lapse_rate(temp: float, pressure: float) -> float: def moist_lapse_rate(temp: float, pressure: float) -> float:
g = 9.8076 g = 9.8076
Hv = 2501000 Hv = 2501000
Rsd = 287 Rsd = 287.0
Rsw = 461.5 Rsw = 461.5
Cpd = 1003.5 Cpd = 1003.5
r = saturated_mixing_ratio(temp, pressure) r = saturated_mixing_ratio(temp, pressure)