wrf.slp¶
- wrf.slp(height, tkel, pres, qv, meta=True, units='hPa')¶
Return the sea level pressure.
This is the raw computational algorithm and does not extract any variables from WRF output files. Use
wrf.getvar()to both extract and compute diagnostic variables.- Parameters:
height (
xarray.DataArrayornumpy.ndarray) – Geopotential height in [m] with the rightmost dimensions being bottom_top x south_north x west_east.tkel (
xarray.DataArrayornumpy.ndarray) – Temperature in [K] with same dimensionality as height.pres (
xarray.DataArrayornumpy.ndarray) –Full pressure (perturbation + base state pressure) in [Pa] with the same dimensionality as height.
Note
This variable must be supplied as a
xarray.DataArrayin order to copy the dimension names to the output. Otherwise, default names will be used.qv (
xarray.DataArrayornumpy.ndarray) – Water vapor mixing ratio in [kg/kg] with the same dimensionality as height.meta (
bool) – Set to False to disable metadata and returnnumpy.ndarrayinstead ofxarray.DataArray. Default is True.units (
str) – The desired units. Refer to thegetvar()product table for a list of available units for ‘slp’. Default is ‘hPa’.
Warning
The input arrays must not contain any missing/fill values or
numpy.nanvalues.- Returns:
The sea level pressure. If xarray is enabled and the meta parameter is True, then the result will be an
xarray.DataArrayobject. Otherwise, the result will be anumpy.ndarrayobject with no metadata.- Return type:
See also
wrf.getvar(),wrf.temp(),wrf.tk()