| 1 |
C $Header: /u/gcmpack/MITgcm_contrib/gael/verification/global_oce_llc90/code/LAYERS_SIZE.h,v 1.1 2012/10/03 20:27:37 gforget Exp $ |
| 2 |
C $Name: $ |
| 3 |
|
| 4 |
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 FineGridFact :: how many fine-grid cells per dF cell |
| 14 |
C FineGridMax :: the number of points in the finer vertical grid |
| 15 |
C used for interpolation |
| 16 |
INTEGER Nlayers, FineGridFact, FineGridMax, layers_maxNum |
| 17 |
PARAMETER( Nlayers = 221 ) |
| 18 |
PARAMETER( FineGridFact = 10 ) |
| 19 |
PARAMETER( FineGridMax = Nr * FineGridFact ) |
| 20 |
PARAMETER( layers_maxNum = 3 ) |
| 21 |
|