C $Header: /home/ubuntu/mnt/e9_copy/MITgcm/verification/OpenAD/code_oad_all/Attic/the_first_level_loop.F,v 1.3 2011/05/24 20:59:04 jmc Exp $ C $Name: checkpoint62y $ #include "PACKAGES_CONFIG.h" #include "CPP_OPTIONS.h" #ifdef ALLOW_OBCS # include "OBCS_OPTIONS.h" #endif #ifdef ALLOW_SEAICE # include "SEAICE_OPTIONS.h" #endif #ifdef ALLOW_GMREDI # include "GMREDI_OPTIONS.h" #endif C start with a copy of THE_MAIN_LOOP C and remove some the obvious extras SUBROUTINE THE_FIRST_LEVEL_LOOP(iLoop, +myTime, myIter, myThid ) IMPLICIT NONE C == Global variables == #include "SIZE.h" #include "EEPARAMS.h" #include "PARAMS.h" c************************************** #ifdef ALLOW_AUTODIFF_TAMC c These includes are needed for c AD-checkpointing. c They provide the fields to be stored. # include "GRID.h" # include "DYNVARS.h" # include "FFIELDS.h" # include "EOS.h" # include "GAD.h" # ifdef ALLOW_CAL # include "cal.h" # endif # ifdef ALLOW_CD_CODE # include "CD_CODE_VARS.h" # endif # ifdef ALLOW_PTRACERS # include "PTRACERS_SIZE.h" # include "PTRACERS.h" # endif # ifdef EXACT_CONSERV # include "SURFACE.h" # endif # ifdef ALLOW_OBCS # include "OBCS_PARAMS.h" # include "OBCS_GRID.h" # include "OBCS_FIELDS.h" # include "OBCS_SEAICE.h" # endif # ifdef ALLOW_EXF # include "EXF_FIELDS.h" # include "EXF_PARAM.h" # ifdef ALLOW_BULKFORMULAE # include "EXF_CONSTANTS.h" # endif # endif /* ALLOW_EXF */ # ifdef ALLOW_SEAICE # include "SEAICE.h" # endif # ifdef ALLOW_EBM # include "EBM.h" # endif # ifdef ALLOW_KPP # include "KPP.h" # include "KPP_DIAGS.h" # include "KPP_PARAMS.h" # endif # ifdef ALLOW_DIVIDED_ADJOINT_MPI # include "mpif.h" # endif # include "tamc.h" # include "ctrl.h" # include "ctrl_dummy.h" # include "cost.h" #endif /* ALLOW_AUTODIFF_TAMC */ integer iLoop INTEGER myThid INTEGER myIter _RL myTime C !LOCAL VARIABLES: C == Local variables == #ifdef ALLOW_DEBUG IF (debugMode) CALL DEBUG_ENTER('THE_FIRST_LEVEL_LOOP',myThid) #endif #ifdef OAD_DEBUG write(standardmessageunit,'(2(A,I6))') + 'OAD: THE_FIRST_LEVEL_LOOP: iloop=',iLoop,' of ',nTimeSteps #endif #ifdef ALLOW_DEBUG IF (debugMode) CALL DEBUG_CALL('FORWARD_STEP',myThid) #endif CALL FORWARD_STEP( iLoop, +mytime, myiter, mythid ) #ifdef ALLOW_DEBUG IF (debugMode) CALL DEBUG_LEAVE('THE_FIRST_LEVEL_LOOP',myThid) #endif END