File indexing completed on 2024-12-17 18:35:38 UTC
view on githubraw file Latest commit 9a7312b0 on 2021-09-28 16:40:31 UTC
9a7312b062 Oliv*0001 #include "GCHEM_OPTIONS.h"
0002 #ifdef ALLOW_DIC
0003 # include "DIC_OPTIONS.h"
0004 #endif
0005 #ifdef ALLOW_BLING
0006 # include "BLING_OPTIONS.h"
0007 #endif
0008 #ifdef ALLOW_DARWIN
0009 # include "DARWIN_OPTIONS.h"
0010 #endif
0011
0012
0013
0014
0015 SUBROUTINE GCHEM_CONS( stage, myTime, myIter, myThid )
0016
0017
0018
0019
0020
0021
0022 IMPLICIT NONE
0023 #include "EEPARAMS.h"
0024 #include "GCHEM.h"
0025
0026
0027
0028 _RL myTime
0029 INTEGER stage, myIter, myThid
0030
0031
0032 #ifdef ALLOW_GCHEM
0033
0034
0035
0036 #ifdef ALLOW_DEBUG
0037 IF (debugMode) CALL DEBUG_ENTER('GCHEM_CONS',myThid)
0038 #endif
0039
0040 #ifdef ALLOW_DARWIN
0041 IF ( useDARWIN ) THEN
0042 CALL DARWIN_CONS( stage, myTime, myIter, myThid )
0043 ENDIF
0044 #endif
0045
0046 #ifdef ALLOW_DEBUG
0047 IF (debugMode) CALL DEBUG_LEAVE('GCHEM_FORCING_SEP',myThid)
0048 #endif
0049
0050 #endif /* ALLOW_GCHEM */
0051
0052 RETURN
0053 END