Discrete Horizontal and Vertical Grids¶
Horizontal grids¶
The placement of model variables on the horizontal C-grid is illustrated here:
Scalars are located at the \(h\)-points, velocities are staggered such that \(u\)-points and \(v\)-points are not co-located, and vorticities are located at \(q\)-points. The indexing for points ( \(i,j\)) in the logically-rectangular domain is such that \(i\) increases in the \(x\) direction (eastward for spherical polar coordinates), and \(j\) increases in the \(y\) direction (northward for spherical polar coordinates). A \(q\)-point with indices ( \(i,j\)) lies to the upper right (northeast) of the \(h\)-point with the same indices. The index for the vertical dimension \(k\) increases with depth, although the vertical coordinate \(z\), measured from the mean surface level \(z = 0\), decreases with depth.
When the horizontal grid is generated, it is actually computed on the “supergrid” at twice the nominal resolution of the model. The grid file contains the grid metrics and the areas of this fine grid. The model then decomposes it into the four staggered grids, along with computing the grid metrics as shown here:
The model carries both the metrics as well as their inverses, for instance, IdyT = 1/dyT. There are also the areas and the inverse areas for all four grid locations. areaT and areaBu are the sum of the four areas from the supergrid surrounding each h-point and each q-point, respectively. The velocity faces can be partially blocked and their areas are adjusted accordingly, where \(dy\_Cu\) and \(dx\_Cv\) are the blocked distances at \(u\) and \(v\) points, respectively.
The horizontal grids can be spherical, tripole, regional, or cubed sphere. The default is for grids to be re-entrant in the \(x\)-direction; this needs to be turned off for regional grids.
Vertical grids¶
The placement of model variables in the vertical is illustrated here:
The vertical coordinate is Lagrangian in that the interfaces between the layers are free to move up and down with time. The interfaces have target depths or target densities, depending on the desired vertical coordinate system. They can even have target sigma values for terrain-following coordinates or you can design a hybrid coordinate in which different interfaces have differing behavior. In any case, the interfaces move with the fluid during the dynamic timesteps and then get reset during a remapping operation. See section Vertical Lagrangian method in pictures for details.