Back to home page

MITgcm

 
 

    


File indexing completed on 2018-03-02 18:42:59 UTC

view on githubraw file Latest commit add29e06 on 2018-01-31 20:35:05 UTC
6328b73337 Gael*0001 C============================================================
                0002 C NOBSGLOB            :: maximum number of profiles per file and tile
                0003 C NFILESPROFMAX       :: maximum number of files
                0004 C NVARMAX             :: maximum number of variables 
                0005 C NLEVELMAX           :: maximum number of vertical levels 
                0006 C NUM_INTERP_POINTS   :: number of points used in horizontal averaging
                0007 C============================================================
                0008 
                0009       INTEGER  NOBSGLOB
                0010       PARAMETER ( NOBSGLOB = 500  )
                0011       INTEGER NFILESPROFMAX
                0012       PARAMETER ( NFILESPROFMAX=20 )
                0013       INTEGER NVARMAX
                0014       PARAMETER ( NVARMAX=6 )
                0015       INTEGER NLEVELMAX
                0016       PARAMETER ( NLEVELMAX=110 )
                0017       INTEGER NUM_INTERP_POINTS
                0018       PARAMETER (NUM_INTERP_POINTS = 4)
6b2230d510 Ou W*0019 #ifdef ALLOW_PROFILES_SAMPLESPLIT_COST
                0020       INTEGER NLEVELCOMBMAX
                0021       PARAMETER ( NLEVELCOMBMAX=50 )
                0022       INTEGER NAVGBINMAX
                0023       PARAMETER ( NAVGBINMAX=2500 )
                0024 #endif