vorticity#
- metpy.calc.vorticity(u, v, *, dx=None, dy=None, x_dim=- 1, y_dim=- 2)#
Calculate the vertical vorticity of the horizontal wind.
- Parameters
u ((…, M, N)
xarray.DataArray
orpint.Quantity
) – x component of the windv ((…, M, N)
xarray.DataArray
orpint.Quantity
) – y component of the winddx (
pint.Quantity
, optional) – The grid spacing(s) in the x-direction. If an array, there should be one item less than the size of u along the applicable axis. Optional ifxarray.DataArray
with latitude/longitude coordinates used as input. Keyword-only argument.dy (
pint.Quantity
, optional) – The grid spacing(s) in the y-direction. If an array, there should be one item less than the size of u along the applicable axis. Optional ifxarray.DataArray
with latitude/longitude coordinates used as input. Keyword-only argument.x_dim (int, optional) – Axis number of x dimension. Defaults to -1 (implying […, Y, X] order). Automatically parsed from input if using
xarray.DataArray
. Keyword-only argument.y_dim (int, optional) – Axis number of y dimension. Defaults to -2 (implying […, Y, X] order). Automatically parsed from input if using
xarray.DataArray
. Keyword-only argument.
- Returns
(…, M, N)
xarray.DataArray
orpint.Quantity
– vertical vorticity
See also
Notes
This implements a numerical version of the typical vertical vorticity equation in Cartesian coordinates:
\[\zeta = \frac{\partial v}{\partial x} - \frac{\partial u}{\partial y}\]Changed in version 1.0: Changed signature from
(u, v, dx, dy)