Align constants along decimal point
This commit is contained in:
parent
83e8b1a7c1
commit
8ee17da826
1 changed files with 4 additions and 4 deletions
|
@ -83,11 +83,11 @@ def lapse(temp: float, delta: float, rate=LAPSE_RATE_DRY) -> float:
|
|||
return temp - (rate * delta)
|
||||
|
||||
def moist_lapse_rate(temp: float, pressure: float) -> float:
|
||||
g = 9.8076
|
||||
g = 9.8076
|
||||
Hv = 2501000
|
||||
Rsd = 287
|
||||
Rsw = 461.5
|
||||
Cpd = 1003.5
|
||||
Rsd = 287.0
|
||||
Rsw = 461.5
|
||||
Cpd = 1003.5
|
||||
r = saturated_mixing_ratio(temp, pressure)
|
||||
T = kelvin(temp)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue