Back to home page

darwin3

 
 

    


File indexing completed on 2026-01-27 18:49:56 UTC

view on githubraw file Latest commit b4e9a6eb on 2026-01-16 16:45:30 UTC
ad59256d7d aver*0001 CBOP
                0002 C     !ROUTINE: OBSFIT_SIZE.h
                0003 
                0004 C     !INTERFACE:
                0005 C     #include "OBSFIT_SIZE.h"
                0006 
                0007 C     !DESCRIPTION:
                0008 C     ==================================================================
                0009 C     | Header file defining ObsFit arrays sizes
                0010 C     ==================================================================
                0011 CEOP
                0012 
                0013 C     NFILESMAX_OBS      :: maximum number of input files
                0014 C     NOBSMAX_OBS        :: maximum number of obs per file
                0015 C     NSAMPLES_MAX_GLO   :: maximum number of samples per file
                0016 C     NSAMP_PER_TILE_MAX :: maximum number of samples per file per tile
                0017 C     NSAMP_PER_OBS_MAX  :: maximum number of samples per observation
                0018 C     NUM_INTERP_PTS_OBS :: number of points used in interpolation for
                0019 C                           model sampling
                0020 
b4e9a6eb7c aver*0021 C This is the max number of input files in data.obsfit
ad59256d7d aver*0022       INTEGER NFILESMAX_OBS
                0023       PARAMETER ( NFILESMAX_OBS=2 )
                0024 
b4e9a6eb7c aver*0025 C This is the max number of "valid" observations, i.e. with date within
                0026 C the model run
ad59256d7d aver*0027       INTEGER NOBSMAX_OBS
                0028       PARAMETER ( NOBSMAX_OBS=2000 )
                0029 
b4e9a6eb7c aver*0030 C This is the max total number of samples in the file
                0031 C (not only "valid" samples)
ad59256d7d aver*0032       INTEGER NSAMPLES_MAX_GLO
                0033       PARAMETER ( NSAMPLES_MAX_GLO=2000 )
                0034 
b4e9a6eb7c aver*0035 C This is the max number of "valid" samples in each tile
ad59256d7d aver*0036       INTEGER NSAMP_PER_TILE_MAX
                0037       PARAMETER ( NSAMP_PER_TILE_MAX=2000 )
                0038 
b4e9a6eb7c aver*0039 C This number is 1 unless observations are spatial averages/integrals
ad59256d7d aver*0040       INTEGER NSAMP_PER_OBS_MAX
                0041       PARAMETER ( NSAMP_PER_OBS_MAX=1 )
                0042 
b4e9a6eb7c aver*0043 C This number is not to be customized
ad59256d7d aver*0044       INTEGER NUM_INTERP_PTS_OBS
                0045       PARAMETER ( NUM_INTERP_PTS_OBS=8 )
                0046