Back to home page

darwin3

 
 

    


File indexing completed on 2024-12-17 18:33:50 UTC

view on githubraw file Latest commit ee4178df on 2020-06-07 22:01:34 UTC
8fbfd1f382 Oliv*0001 #ifdef ALLOW_DARWIN
                0002 
                0003 CBOP
                0004 C     !ROUTINE: DARWIN_SIZE.h
                0005 C     !INTERFACE:
                0006 C #include DARWIN_SIZE.h
                0007 
                0008 C     !DESCRIPTION:
                0009 C Contains dimensions for the darwin model.
                0010 C
                0011 C nplank   :: number of plankton types
                0012 C nGroup   :: number of plankton functional groups
                0013 C             (for allometric trait generation)
                0014 C nopt     :: number of optical types (spectra to read in)
                0015 C nPhoto   :: number of phototrophs
                0016 C             (will have Chl tracer if DARWIN_ALLOW_CHL is defined)
                0017 C nlam     :: number of wavebands (set in radtrans package if compiled)
                0018 
                0019       integer nplank
                0020       integer nGroup
                0021       integer nopt
                0022       integer nPhoto
                0023       parameter(nplank=4)
                0024       parameter(nGroup=5)
                0025       parameter(nopt=1)
                0026       parameter(nPhoto=2)
                0027 
                0028 #ifndef ALLOW_RADTRANS
                0029       integer nlam
                0030       parameter(nlam=1)
                0031 #endif
                0032 
                0033 CEOP
                0034 #endif /* ALLOW_DARWIN */