Hack: Multiply lapse rate by magic factor of 1.08

This commit is contained in:
XANTRONIX 2025-03-12 22:53:18 -04:00
parent 344e4a4e92
commit 69f6218f32

View file

@ -122,7 +122,7 @@ def loft_parcel(start_temp: float,
except OverflowError:
break
temp = lapse(temp, height - last_height, rate)
temp = lapse(temp, height - last_height, 1.08*rate)
yield temp, pressure