
dv2uvg
Computes the divergent (irrotational) wind components for a gaussian grid via spherical harmonics.
Prototype
procedure dv2uvg ( dv : numeric, ud : float or double, vd : float or double )
Arguments
dvDivergence array (input, two or more dimensions, where the rightmost two dimensions must be lat x lon)
- input values must be in ascending latitude order
- input array must be on a global grid
Divergent zonal wind component (output, same dimensions as dv). The values will be in ascending latitude order.
vdDivergent meridional wind component (output, same dimensions as dv). The values will be in ascending latitude order.
Description
dv2uvg computes the divergent (irrotational) wind components given an array, dv, that contains divergence and is on a gaussian grid. The results are returned in the arrays ud and vd.
This procedure does not handle missing values (defined by the _FillValue attribute). If any missing values are encountered in a particular 2D input grid, then all of the values in the corresponding output grids will be set to the missing value defined by the output grids' _FillValue attribute.
Note: For the arrays whose rightmost two dimensions are nlat x nlon, the rest of the dimensions (if any) are collectively referred to as N. If the input/output arrays are just two dimensions, then N can either be considered equal to 1 or nothing at all.
Arrays which have dimensions N x nlat x nlon should not include the cyclic (wraparound) points when invoking the procedures and functions which use spherical harmonics (Spherepack).
If the input array dv is on a fixed grid, dv2uvf should be used. Also, note that dv2uvg is the procedural version of dv2uvG.
See Also
dv2uvG, dv2uvf, dv2uvF, uv2dvF, uv2dvG
Examples
Example 1
dv is an array (on a gaussian grid) dimensioned ntim x nlat x nlon, containing the divergence.
ud = new ( dimsizes(dv), typeof(dv)) ; zonal divergent wind vd = new ( dimsizes(dv), typeof(dv)) ; meridional divergent wind dv2uvg (dv,ud,vd) ; dv ==> divergent wind componentsExample 2
Read u/v from a netCDF file, compute divergence, and then compute the divergent (irrotational) wind components:
a = addfile("UV300.nc","r") u = a->U ;U is on a T42 gaussian grid, dimensioned nlat x nlon v = a->V ;V is on a T42 gaussian grid, dimensioned nlat x nlon dv = new ( dimsizes(u), typeof(u)) ; divergence ud = new ( dimsizes(dv),typeof(dv)) ; zonal divergent wind vd = new ( dimsizes(dv),typeof(dv)) ; meridional divergent wind uv2dvg (u,v,dv) ; u,v ==> divergence dv2uvg (dv,ud,vd) ; dv ==> divergent wind components
Errors
If jer or ker is equal to:
1 : error in the specification of nlat
2 : error in the specification of nlon
4 : error in the specification of nt (jer only)