| 1 |
rpa |
1.1 |
C ====================================================================== |
| 2 |
|
|
C * Compiled-in size options for the LAYERS package * |
| 3 |
|
|
C |
| 4 |
|
|
C - Just as you have to define Nr in SIZE.h, you must define the number |
| 5 |
|
|
C of vertical layers for isopycnal averaging so that the proper array |
| 6 |
|
|
C sizes can be declared in the LAYERS.h header file. |
| 7 |
|
|
C |
| 8 |
|
|
C - Variables - |
| 9 |
|
|
C nLayers :: the number if isopycnal layers (must match data.layers) |
| 10 |
|
|
C nFineGridMax :: the maximum number of points in the finer vertical grid |
| 11 |
|
|
C used for interpolation |
| 12 |
|
|
INTEGER Nlayers |
| 13 |
|
|
INTEGER FineGridMax |
| 14 |
|
|
PARAMETER( Nlayers = 21 ) |
| 15 |
|
|
PARAMETER( FineGridMax = 200 ) |
| 16 |
|
|
|