wet_bulb_temperature#
- metpy.calc.wet_bulb_temperature(pressure, temperature, dewpoint)#
Calculate the wet-bulb temperature using Normand’s rule.
This function calculates the wet-bulb temperature using the Normand method. The LCL is computed, and that parcel brought down to the starting pressure along a moist adiabat. The Normand method (and others) are described and compared by [Knox2017].
- Parameters
pressure (
pint.Quantity
) – Initial atmospheric pressuretemperature (
pint.Quantity
) – Initial atmospheric temperaturedewpoint (
pint.Quantity
) – Initial atmospheric dewpoint
- Returns
pint.Quantity
– Wet-bulb temperature
Examples
>>> from metpy.calc import wet_bulb_temperature >>> from metpy.units import units >>> wet_bulb_temperature(993 * units.hPa, 32 * units.degC, 15 * units.degC) <Quantity(20.3770228, 'degree_Celsius')>
See also
Notes
Since this function iteratively applies a parcel calculation, it should be used with caution on large arrays.