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