Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added function to calculate richardson number. #1346

Merged
merged 1 commit into from
May 4, 2020
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions docs/_templates/overrides/metpy.calc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ Boundary Layer/Turbulence
brunt_vaisala_frequency_squared
brunt_vaisala_period
friction_velocity
gradient_richardson_number
tke


Expand Down
2 changes: 2 additions & 0 deletions docs/references.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ References
.. [Garratt1994] Garratt, J.R., 1994: *The Atmospheric Boundary Layer*. Cambridge
University Press, 316 pp.

.. [Holton2004] Holton, J. R., 2004: *An Introduction to Dynamic Meteorology*. 4th ed. Academic Press, 535 pp.

.. [Koch1983] Koch, S. E., M. DesJardins, and P. J. Kocin, 1983: An interactive Barnes
objective map analysis scheme for use with satellite and conventional data.
**J. Appl. Meteor. Climatol.**, *22*, 1487-1503,
Expand Down
37 changes: 37 additions & 0 deletions src/metpy/calc/thermo.py
Original file line number Diff line number Diff line change
Expand Up @@ -2617,3 +2617,40 @@ def lifted_index(pressure, temperature, parcel_profile):
# calculate the lifted index.
lifted_index = T500 - Tp500.to(units.degC)
return lifted_index


@exporter.export
@preprocess_xarray
@check_units('[length]', '[temperature]', '[speed]', '[speed]')
def gradient_richardson_number(height, potential_temperature, u, v, axis=0):
r"""Calculate the gradient (or flux) Richardson number.

.. math:: Ri = (g/\theta) * \frac{\left(\partial \theta/\partial z\)}
{[\left(\partial u / \partial z\right)^2 + \left(\partial v / \partial z\right)^2}

See [Holton2004]_ pg. 121-122. As noted by [Holton2004]_, flux Richardson
number values below 0.25 indicate turbulence.

Parameters
----------
height : `pint.Quantity`
Atmospheric height
potential_temperature : `pint.Quantity`
Atmospheric potential temperature
u : `pint.Quantity`
x component of the wind
v : `pint.Quantity`
y component of the wind
axis : int, optional
The axis corresponding to vertical, defaults to 0.

Returns
-------
`pint.Quantity`
Gradient Richardson number
"""
dthetadz = first_derivative(potential_temperature, x=height, axis=axis)
dudz = first_derivative(u, x=height, axis=axis)
dvdz = first_derivative(v, x=height, axis=axis)

return (mpconsts.g / potential_temperature) * (dthetadz / (dudz ** 2 + dvdz ** 2))
18 changes: 16 additions & 2 deletions tests/calc/test_thermo.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@
brunt_vaisala_period, cape_cin, density, dewpoint,
dewpoint_from_relative_humidity, dewpoint_from_specific_humidity,
dry_lapse, dry_static_energy, el, equivalent_potential_temperature,
exner_function, isentropic_interpolation, lcl, lfc, lifted_index,
mixed_layer, mixed_layer_cape_cin, mixed_parcel, mixing_ratio,
exner_function, gradient_richardson_number,
isentropic_interpolation, lcl, lfc, lifted_index, mixed_layer,
mixed_layer_cape_cin, mixed_parcel, mixing_ratio,
mixing_ratio_from_relative_humidity,
mixing_ratio_from_specific_humidity, moist_lapse,
moist_static_energy, most_unstable_cape_cin, most_unstable_parcel,
Expand Down Expand Up @@ -1582,3 +1583,16 @@ def test_lifted_index():
parcel_prof = parcel_profile(pressure, temperature[0], dewpoint[0])
LI = lifted_index(pressure, temperature, parcel_prof)
assert_almost_equal(LI, -7.9176350 * units.delta_degree_Celsius, 2)


def test_gradient_richardson_number():
"""Test gradient Richardson number calculation."""
theta = units('K') * np.asarray([254.5, 258.3, 262.2])
u_wnd = units('m/s') * np.asarray([-2., -1.1, 0.23])
v_wnd = units('m/s') * np.asarray([3.3, 4.2, 5.2])
height = units('km') * np.asarray([0.2, 0.4, 0.6])

result = gradient_richardson_number(height, theta, u_wnd, v_wnd)
expected = np.asarray([24.2503551, 13.6242603, 8.4673744])

assert_array_almost_equal(result, expected, 4)