/[MITgcm]/MITgcm/model/src/do_statevars_diags.F
ViewVC logotype

Diff of /MITgcm/model/src/do_statevars_diags.F

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.1 by jmc, Tue Jul 6 21:12:51 2004 UTC revision 1.12 by jmc, Sun Jan 27 20:55:43 2008 UTC
# Line 3  C $Name$ Line 3  C $Name$
3    
4  #include "PACKAGES_CONFIG.h"  #include "PACKAGES_CONFIG.h"
5  #include "CPP_OPTIONS.h"  #include "CPP_OPTIONS.h"
 #ifdef ALLOW_GCHEM  
 #include "GCHEM_OPTIONS.h"  
 #endif  
6    
7    
8  CBOP  CBOP
9  C     !ROUTINE: DO_STATEVARS_DIAGS  C     !ROUTINE: DO_STATEVARS_DIAGS
10  C     !INTERFACE:  C     !INTERFACE:
11        SUBROUTINE DO_STATEVARS_DIAGS( myTime, myIter, myThid )        SUBROUTINE DO_STATEVARS_DIAGS( myTime, seqFlag, myIter, myThid )
12  C     !DESCRIPTION: \bv  C     !DESCRIPTION: \bv
13  C     *==========================================================*  C     *==========================================================*
14  C     | SUBROUTINE DO_STATEVARS_DIAGS                                  C     | SUBROUTINE DO_STATEVARS_DIAGS
15  C     | o Controlling routine for state variables diagnostics  C     | o Controlling routine for state variables diagnostics
16  C     *==========================================================*  C     *==========================================================*
17  C     | Computing statistics of the model state (state-variables)  C     | Computing diagnostics of the model state (state-variables)
18  C     | is done at this level (after updating the halo region),  C     | is done at this level ;
19  C     | as opposed to other diagnostic calls (fluxes, tendencies)  C     | by contrast, other diagnostics (fluxes, tendencies)
20  C     | that remain within the computation sequence.    C     | remain within the computation sequence.
 C     | Note: IO are not supposed to be done at this level  
 C     |       but later (in DO_THE_MODEL_IO)  
21  C     *==========================================================*  C     *==========================================================*
22  C     \ev  C     \ev
23    
# Line 35  C     == Global variables === Line 30  C     == Global variables ===
30    
31  C     !INPUT/OUTPUT PARAMETERS:  C     !INPUT/OUTPUT PARAMETERS:
32  C     == Routine arguments ==  C     == Routine arguments ==
33  C     myTime - Current time of simulation ( s )  C     myTime  :: Current time of simulation ( s )
34  C     myIter - Iteration number  C     seqFlag :: flag that indicate where this S/R is called from:
35  C     myThid - Thread number for this instance of the routine.  C             :: =0 called from the beginning of forward_step
36    C             :: =1 called from the middle of forward_step
37    C             :: =2 called from the end of forward_step
38    C     myIter  :: Iteration number
39    C     myThid  :: Thread number for this instance of the routine.
40        _RL     myTime        _RL     myTime
41          INTEGER seqFlag
42        INTEGER myIter        INTEGER myIter
43        INTEGER myThid        INTEGER myThid
   
44  CEOP  CEOP
45    
46    #ifdef ALLOW_DIAGNOSTICS
47  C     !LOCAL VARIABLES:  C     !LOCAL VARIABLES:
48  C     == Local variables  C     == Local variables ==
49        INTEGER bi,bj  C     selectVars :: select which group of dianostics variables to fill-in
50    C            = 1 :: fill-in diagnostics for tracer   variables only
51  #ifdef ALLOW_TIMEAVE  C            = 2 :: fill-in diagnostics for momentum variables only
52  C--   Fill-in TimeAve pkg diagnostics (for state-variables)  C            = 3 :: fill-in diagnostics for momentum & tracer variables
53    C            = 4 :: fill-in state variable tendency diagnostics the second time
54    C     bi,bj      :: tile indices
55          INTEGER selectVars
56    #if defined(ALLOW_THSICE) || defined(ALLOW_LAND)
57          INTEGER bi, bj
58    #endif
59    
60        DO bj=myByLo(myThid),myByHi(myThid)  C--   Fill-in Diagnostics pkg storage array (for state-variables)
61         DO bi=myBxLo(myThid),myBxHi(myThid)        IF ( usediagnostics ) THEN
62    
63          IF ( taveFreq.GT.0. ) THEN  C-    select which group of state-var diagnostics to fill-in,
64            CALL TIMEAVE_STATVARS(myTime, myIter, bi, bj, myThid)  C      depending on: where this S/R is called from (seqFlag)
65    C                    and stagger/synchronous TimeStep
66            selectVars = 0
67            IF ( staggerTimeStep ) THEN
68              IF ( seqFlag.EQ.0 ) selectVars = 2
69              IF ( seqFlag.EQ.1 ) selectVars = 1
70            ELSE
71              IF ( seqFlag.EQ.0 ) selectVars = 3
72          ENDIF          ENDIF
73            IF ( seqFlag.EQ.2 ) selectVars = 4
74            CALL DIAGNOSTICS_FILL_STATE(selectVars, myThid)
75    
76  #ifdef ALLOW_PTRACERS  #ifdef ALLOW_PTRACERS
77  #ifndef PTRACERS_SEPARATE_FORCING          IF ( (selectVars.EQ.1 .OR. selectVars.EQ.3)
78            CALL PTRACERS_STATVARS(myTime, myIter, bi, bj, myThid)       &      .AND. usePTRACERS ) THEN
79  #endif            CALL PTRACERS_DIAGNOSTICS_STATE( myThid )
80            ENDIF
81  #endif  #endif
82    
83  C--    End of bi,bj loop  #ifdef ALLOW_SEAICE
84         ENDDO         IF ( seqFlag.EQ.0 .AND. useSEAICE ) THEN
85        ENDDO          CALL SEAICE_DIAGNOSTICS_STATE( myTime, myIter, myThid )
86  #endif /* ALLOW_TIMEAVE */         ENDIF
87    #endif /* ALLOW_SEAICE */
88    
89  #ifdef ALLOW_DIAGNOSTICS  #ifdef ALLOW_THSICE
90  C--   Fill-in Diagnostics pkg storage array (for state-variables)         IF ( seqFlag.EQ.0 .AND. useThSIce ) THEN
91            DO bj=myByLo(myThid),myByHi(myThid)
92             DO bi=myBxLo(myThid),myBxHi(myThid)
93              CALL THSICE_DIAGNOSTICS_STATE( myTime,myIter,bi,bj,myThid )
94             ENDDO
95            ENDDO
96           ENDIF
97    #endif /* ALLOW_THSICE */
98    
99        IF ( usediagnostics ) THEN  #ifdef ALLOW_LAND
100          CALL DIAGNOSTICS_FILL_STATE(myThid)         IF ( seqFlag.EQ.0 .AND. useLand ) THEN
101  # ifdef ALLOW_PTRACERS          DO bj=myByLo(myThid),myByHi(myThid)
102         IF (useptracers) THEN           DO bi=myBxLo(myThid),myBxHi(myThid)
103          CALL PTRACERS_FILL_DIAGNOSTICS(myThid)            CALL LAND_DIAGNOSTICS_STATE( myTime,myIter, bi,bj, myThid )
104             ENDDO
105            ENDDO
106         ENDIF         ENDIF
107  # endif  #endif /* ALLOW_LAND */
108        ENDIf  
109    #ifdef ALLOW_MYPACKAGE
110           IF ( seqFlag.EQ.0 .AND. useMYPACKAGE ) THEN
111             CALL MYPACKAGE_DIAGNOSTICS_STATE( myTime, myIter, myThid )
112           ENDIF
113    #endif /* ALLOW_MYPACKAGE */
114    
115          ENDIf
116  #endif /* ALLOW_DIAGNOSTICS */  #endif /* ALLOW_DIAGNOSTICS */
117    
118        RETURN        RETURN

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.12

  ViewVC Help
Powered by ViewVC 1.1.22