C $Header: /home/ubuntu/mnt/e9_copy/MITgcm_contrib/ifenty/ECCO_v4/code/LAYERS_SIZE.h,v 1.1 2014/04/29 21:56:10 ifenty Exp $ C $Name: $ C ====================================================================== C * Compiled-in size options for the LAYERS package * C C - Just as you have to define Nr in SIZE.h, you must define the number C of vertical layers for isopycnal averaging so that the proper array C sizes can be declared in the LAYERS.h header file. C C - Variables - C NLayers :: the number if isopycnal layers (must match data.layers) C FineGridFact :: how many fine-grid cells per dF cell C FineGridMax :: the number of points in the finer vertical grid C used for interpolation INTEGER Nlayers, FineGridFact, FineGridMax, layers_maxNum PARAMETER( Nlayers = 221 ) PARAMETER( FineGridFact = 10 ) PARAMETER( FineGridMax = Nr * FineGridFact ) PARAMETER( layers_maxNum = 3 )