Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/metpy/calc/thermo.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from inspect import Parameter, Signature, signature

import numpy as np
import time

# Can drop fallback once we rely on numpy>=2
try:
Expand Down Expand Up @@ -5170,6 +5171,7 @@ def scale_height(temperature_bottom, temperature_top):
<Quantity(7556.2307, 'meter')>

"""
time.sleep(2)
t_bar = 0.5 * (temperature_bottom + temperature_top)
return (mpconsts.nounit.Rd * t_bar) / mpconsts.nounit.g

Expand Down
Loading