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

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

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

revision 1.40 by adcroft, Wed Dec 9 16:11:51 1998 UTC revision 1.76 by heimbach, Mon Aug 13 18:05:26 2001 UTC
# Line 1  Line 1 
1  C $Header$  C $Header$
2    C $Name$
3    
4  #include "CPP_OPTIONS.h"  #include "CPP_OPTIONS.h"
5    
# Line 25  C     \================================= Line 26  C     \=================================
26  C     == Global variables ===  C     == Global variables ===
27  #include "SIZE.h"  #include "SIZE.h"
28  #include "EEPARAMS.h"  #include "EEPARAMS.h"
 #include "CG2D.h"  
29  #include "PARAMS.h"  #include "PARAMS.h"
30  #include "DYNVARS.h"  #include "DYNVARS.h"
31    #include "GRID.h"
32    #ifdef ALLOW_PASSIVE_TRACER
33    #include "TR1.h"
34    #endif
35    
36    #ifdef ALLOW_AUTODIFF_TAMC
37    # include "tamc.h"
38    # include "tamc_keys.h"
39    # include "FFIELDS.h"
40    # ifdef ALLOW_KPP
41    #  include "KPP.h"
42    # endif
43    # ifdef ALLOW_GMREDI
44    #  include "GMREDI.h"
45    # endif
46    #endif /* ALLOW_AUTODIFF_TAMC */
47    
48    #ifdef ALLOW_TIMEAVE
49    #include "TIMEAVE_STATV.h"
50    #endif
51    
52  C     == Routine arguments ==  C     == Routine arguments ==
53  C     myTime - Current time in simulation  C     myTime - Current time in simulation
54  C     myIter - Current iteration number in simulation  C     myIter - Current iteration number in simulation
55  C     myThid - Thread number for this instance of the routine.  C     myThid - Thread number for this instance of the routine.
       INTEGER myThid  
56        _RL myTime        _RL myTime
57        INTEGER myIter        INTEGER myIter
58          INTEGER myThid
59    
60  C     == Local variables  C     == Local variables
61  C     xA, yA                 - Per block temporaries holding face areas  C     maskUp                   o maskUp: land/water mask for W points
62  C     uTrans, vTrans, rTrans - Per block temporaries holding flow  C     fVer[STUV]               o fVer: Vertical flux term - note fVer
 C                              transport  
 C     rVel                     o uTrans: Zonal transport  
 C                              o vTrans: Meridional transport  
 C                              o rTrans: Vertical transport  
 C                              o rVel:   Vertical velocity at upper and  
 C                                        lower cell faces.  
 C     maskC,maskUp             o maskC: land/water mask for tracer cells  
 C                              o maskUp: land/water mask for W points  
 C     aTerm, xTerm, cTerm    - Work arrays for holding separate terms in  
 C     mTerm, pTerm,            tendency equations.  
 C     fZon, fMer, fVer[STUV]   o aTerm: Advection term  
 C                              o xTerm: Mixing term  
 C                              o cTerm: Coriolis term  
 C                              o mTerm: Metric term  
 C                              o pTerm: Pressure term  
 C                              o fZon: Zonal flux term  
 C                              o fMer: Meridional flux term  
 C                              o fVer: Vertical flux term - note fVer  
63  C                                      is "pipelined" in the vertical  C                                      is "pipelined" in the vertical
64  C                                      so we need an fVer for each  C                                      so we need an fVer for each
65  C                                      variable.  C                                      variable.
66  C     rhoK, rhoKM1   - Density at current level, level above and level  C     rhoK, rhoKM1   - Density at current level, and level above
 C                      below.  
 C     rhoKP1                                                                    
 C     buoyK, buoyKM1 - Buoyancy at current level and level above.  
67  C     phiHyd         - Hydrostatic part of the potential phiHydi.  C     phiHyd         - Hydrostatic part of the potential phiHydi.
68  C                      In z coords phiHydiHyd is the hydrostatic  C                      In z coords phiHydiHyd is the hydrostatic
69  C                      pressure anomaly  C                      Potential (=pressure/rho0) anomaly
70  C                      In p coords phiHydiHyd is the geopotential  C                      In p coords phiHydiHyd is the geopotential
71  C                      surface height  C                      surface height anomaly.
72  C                      anomaly.  C     phiSurfX, - gradient of Surface potentiel (Pressure/rho, ocean)
73  C     etaSurfX,      - Holds surface elevation gradient in X and Y.  C     phiSurfY             or geopotentiel (atmos) in X and Y direction
 C     etaSurfY  
 C     K13, K23, K33  - Non-zero elements of small-angle approximation  
 C                      diffusion tensor.  
 C     KapGM          - Spatially varying Visbeck et. al mixing coeff.  
 C     KappaRT,       - Total diffusion in vertical for T and S.  
 C     KappaRS          (background + spatially varying, isopycnal term).  
74  C     iMin, iMax     - Ranges and sub-block indices on which calculations  C     iMin, iMax     - Ranges and sub-block indices on which calculations
75  C     jMin, jMax       are applied.  C     jMin, jMax       are applied.
76  C     bi, bj  C     bi, bj
77  C     k, kUp,        - Index for layer above and below. kUp and kDown  C     k, kup,        - Index for layer above and below. kup and kDown
78  C     kDown, kM1       are switched with layer to be the appropriate  C     kDown, km1       are switched with layer to be the appropriate
79  C                      index into fVerTerm.  C                      index into fVerTerm.
80        _RS xA      (1-OLx:sNx+OLx,1-OLy:sNy+OLy)  C     tauAB - Adams-Bashforth timestepping weight: 0=forward ; 1/2=Adams-Bashf.
       _RS yA      (1-OLx:sNx+OLx,1-OLy:sNy+OLy)  
       _RL uTrans  (1-OLx:sNx+OLx,1-OLy:sNy+OLy)  
       _RL vTrans  (1-OLx:sNx+OLx,1-OLy:sNy+OLy)  
       _RL rTrans  (1-OLx:sNx+OLx,1-OLy:sNy+OLy)  
       _RL rVel    (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)  
       _RS maskC   (1-OLx:sNx+OLx,1-OLy:sNy+OLy)  
81        _RS maskUp  (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RS maskUp  (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
       _RL aTerm   (1-OLx:sNx+OLx,1-OLy:sNy+OLy)  
       _RL xTerm   (1-OLx:sNx+OLx,1-OLy:sNy+OLy)  
       _RL cTerm   (1-OLx:sNx+OLx,1-OLy:sNy+OLy)  
       _RL mTerm   (1-OLx:sNx+OLx,1-OLy:sNy+OLy)  
       _RL pTerm   (1-OLx:sNx+OLx,1-OLy:sNy+OLy)  
       _RL fZon    (1-OLx:sNx+OLx,1-OLy:sNy+OLy)  
       _RL fMer    (1-OLx:sNx+OLx,1-OLy:sNy+OLy)  
       _RL fVerT   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)  
       _RL fVerS   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)  
82        _RL fVerU   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)        _RL fVerU   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)
83        _RL fVerV   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)        _RL fVerV   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)
84        _RL phiHyd  (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr)        _RL phiHyd  (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr)
85        _RL rhokm1  (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL rhokm1  (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
       _RL rhokp1  (1-OLx:sNx+OLx,1-OLy:sNy+OLy)  
86        _RL rhok    (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL rhok    (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
87        _RL buoyKM1 (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL phiSurfX(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
88        _RL buoyK   (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL phiSurfY(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
89        _RL rhotmp  (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL KappaRU (1-Olx:sNx+Olx,1-Oly:sNy+Oly,Nr)
90        _RL etaSurfX(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL KappaRV (1-Olx:sNx+Olx,1-Oly:sNy+Oly,Nr)
91        _RL etaSurfY(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL sigmaX  (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr)
92        _RL K13     (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr)        _RL sigmaY  (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr)
93        _RL K23     (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr)        _RL sigmaR  (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr)
94        _RL K33     (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr)        _RL tauAB
95        _RL KapGM   (1-OLx:sNx+OLx,1-OLy:sNy+OLy)  
96        _RL KappaRT (1-Olx:sNx+Olx,1-Oly:sNy+Oly,Nr)  C This is currently used by IVDC and Diagnostics
97        _RL KappaRS (1-Olx:sNx+Olx,1-Oly:sNy+Oly,Nr)        _RL ConvectCount (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr)
98    
99        INTEGER iMin, iMax        INTEGER iMin, iMax
100        INTEGER jMin, jMax        INTEGER jMin, jMax
101        INTEGER bi, bj        INTEGER bi, bj
102        INTEGER i, j        INTEGER i, j
103        INTEGER k, kM1, kUp, kDown        INTEGER k, km1, kup, kDown
       LOGICAL BOTTOM_LAYER  
104    
105    Cjmc : add for phiHyd output <- but not working if multi tile per CPU
106    c     CHARACTER*(MAX_LEN_MBUF) suff
107    c     LOGICAL  DIFFERENT_MULTIPLE
108    c     EXTERNAL DIFFERENT_MULTIPLE
109    Cjmc(end)
110    
111  C---    The algorithm...  C---    The algorithm...
112  C  C
113  C       "Correction Step"  C       "Correction Step"
# Line 139  C Line 121  C
121  C       "Calculation of Gs"  C       "Calculation of Gs"
122  C       ===================  C       ===================
123  C       This is where all the accelerations and tendencies (ie.  C       This is where all the accelerations and tendencies (ie.
124  C       phiHydysics, parameterizations etc...) are calculated  C       physics, parameterizations etc...) are calculated
 C         rVel = sum_r ( div. u[n] )  
125  C         rho = rho ( theta[n], salt[n] )  C         rho = rho ( theta[n], salt[n] )
126  C         b   = b(rho, theta)  C         b   = b(rho, theta)
127  C         K31 = K31 ( rho )  C         K31 = K31 ( rho )
128  C         Gu[n] = Gu( u[n], v[n], rVel, b, ... )  C         Gu[n] = Gu( u[n], v[n], wVel, b, ... )
129  C         Gv[n] = Gv( u[n], v[n], rVel, b, ... )  C         Gv[n] = Gv( u[n], v[n], wVel, b, ... )
130  C         Gt[n] = Gt( theta[n], u[n], v[n], rVel, K31, ... )  C         Gt[n] = Gt( theta[n], u[n], v[n], wVel, K31, ... )
131  C         Gs[n] = Gs( salt[n], u[n], v[n], rVel, K31, ... )  C         Gs[n] = Gs( salt[n], u[n], v[n], wVel, K31, ... )
132  C  C
133  C       "Time-stepping" or "Prediction"  C       "Time-stepping" or "Prediction"
134  C       ================================  C       ================================
# Line 178  C     point numbers. This prevents spuri Line 159  C     point numbers. This prevents spuri
159  C     uninitialised but inert locations.  C     uninitialised but inert locations.
160        DO j=1-OLy,sNy+OLy        DO j=1-OLy,sNy+OLy
161         DO i=1-OLx,sNx+OLx         DO i=1-OLx,sNx+OLx
162          xA(i,j)      = 0. _d 0          DO k=1,Nr
163          yA(i,j)      = 0. _d 0           phiHyd(i,j,k)  = 0. _d 0
164          uTrans(i,j)  = 0. _d 0           KappaRU(i,j,k) = 0. _d 0
165          vTrans(i,j)  = 0. _d 0           KappaRV(i,j,k) = 0. _d 0
166          aTerm(i,j)   = 0. _d 0           sigmaX(i,j,k) = 0. _d 0
167          xTerm(i,j)   = 0. _d 0           sigmaY(i,j,k) = 0. _d 0
168          cTerm(i,j)   = 0. _d 0           sigmaR(i,j,k) = 0. _d 0
         mTerm(i,j)   = 0. _d 0  
         pTerm(i,j)   = 0. _d 0  
         fZon(i,j)    = 0. _d 0  
         fMer(i,j)    = 0. _d 0  
         DO K=1,Nr  
          phiHyd (i,j,k)  = 0. _d 0  
          K13(i,j,k)  = 0. _d 0  
          K23(i,j,k)  = 0. _d 0  
          K33(i,j,k)  = 0. _d 0  
          KappaRT(i,j,k) = 0. _d 0  
          KappaRS(i,j,k) = 0. _d 0  
169          ENDDO          ENDDO
170          rhoKM1 (i,j) = 0. _d 0          rhoKM1 (i,j) = 0. _d 0
171          rhok   (i,j) = 0. _d 0          rhok   (i,j) = 0. _d 0
172          rhoKP1 (i,j) = 0. _d 0          phiSurfX(i,j) = 0. _d 0
173          rhoTMP (i,j) = 0. _d 0          phiSurfY(i,j) = 0. _d 0
         buoyKM1(i,j) = 0. _d 0  
         buoyK  (i,j) = 0. _d 0  
         maskC  (i,j) = 0. _d 0  
174         ENDDO         ENDDO
175        ENDDO        ENDDO
176    
177    #ifdef ALLOW_AUTODIFF_TAMC
178    C--   HPF directive to help TAMC
179    CHPF$ INDEPENDENT
180    #endif /* ALLOW_AUTODIFF_TAMC */
181    
182        DO bj=myByLo(myThid),myByHi(myThid)        DO bj=myByLo(myThid),myByHi(myThid)
183    
184    #ifdef ALLOW_AUTODIFF_TAMC
185    C--    HPF directive to help TAMC
186    CHPF$  INDEPENDENT, NEW (fVerU,fVerV
187    CHPF$&                  ,phiHyd
188    CHPF$&                  ,KappaRU,KappaRV
189    CHPF$&                  )
190    #endif /* ALLOW_AUTODIFF_TAMC */
191    
192         DO bi=myBxLo(myThid),myBxHi(myThid)         DO bi=myBxLo(myThid),myBxHi(myThid)
193    
194    #ifdef ALLOW_AUTODIFF_TAMC
195              act1 = bi - myBxLo(myThid)
196              max1 = myBxHi(myThid) - myBxLo(myThid) + 1
197    
198              act2 = bj - myByLo(myThid)
199              max2 = myByHi(myThid) - myByLo(myThid) + 1
200    
201              act3 = myThid - 1
202              max3 = nTx*nTy
203    
204              act4 = ikey_dynamics - 1
205    
206              ikey = (act1 + 1) + act2*max1
207         &                      + act3*max1*max2
208         &                      + act4*max1*max2*max3
209    #endif /* ALLOW_AUTODIFF_TAMC */
210    
211  C--     Set up work arrays that need valid initial values  C--     Set up work arrays that need valid initial values
212          DO j=1-OLy,sNy+OLy          DO j=1-OLy,sNy+OLy
213           DO i=1-OLx,sNx+OLx           DO i=1-OLx,sNx+OLx
214            rTrans(i,j)   = 0. _d 0            fVerU  (i,j,1) = 0. _d 0
215            rVel  (i,j,1) = 0. _d 0            fVerU  (i,j,2) = 0. _d 0
216            rVel  (i,j,2) = 0. _d 0            fVerV  (i,j,1) = 0. _d 0
217            fVerT (i,j,1) = 0. _d 0            fVerV  (i,j,2) = 0. _d 0
           fVerT (i,j,2) = 0. _d 0  
           fVerS (i,j,1) = 0. _d 0  
           fVerS (i,j,2) = 0. _d 0  
           fVerU (i,j,1) = 0. _d 0  
           fVerU (i,j,2) = 0. _d 0  
           fVerV (i,j,1) = 0. _d 0  
           fVerV (i,j,2) = 0. _d 0  
           phiHyd(i,j,1) = 0. _d 0  
           K13   (i,j,1) = 0. _d 0  
           K23   (i,j,1) = 0. _d 0  
           K33   (i,j,1) = 0. _d 0  
           KapGM (i,j)   = GMkbackground  
218           ENDDO           ENDDO
219          ENDDO          ENDDO
220    
221          iMin = 1-OLx+1  C--     Start computation of dynamics
222          iMax = sNx+OLx          iMin = 1-OLx+2
223          jMin = 1-OLy+1          iMax = sNx+OLx-1
224          jMax = sNy+OLy          jMin = 1-OLy+2
225            jMax = sNy+OLy-1
226    
227          K = 1  #ifdef ALLOW_AUTODIFF_TAMC
228          BOTTOM_LAYER = K .EQ. Nr  CADJ STORE uvel (:,:,:,bi,bj) = comlev1_bibj, key = ikey, byte = isbyte
229    CADJ STORE vvel (:,:,:,bi,bj) = comlev1_bibj, key = ikey, byte = isbyte
230  #ifdef DO_PIPELINED_CORRECTION_STEP  CADJ STORE wvel (:,:,:,bi,bj) = comlev1_bibj, key = ikey, byte = isbyte
231  C--     Calculate gradient of surface pressure  #endif /* ALLOW_AUTODIFF_TAMC */
232          CALL CALC_GRAD_ETA_SURF(  
233       I       bi,bj,iMin,iMax,jMin,jMax,  C--     Explicit part of the Surface Potentiel Gradient (add in TIMESTEP)
234       O       etaSurfX,etaSurfY,  C       (note: this loop will be replaced by CALL CALC_GRAD_ETA)
235       I       myThid)          IF (implicSurfPress.NE.1.) THEN
236  C--     Update fields in top level according to tendency terms            CALL CALC_GRAD_PHI_SURF(
237          CALL CORRECTION_STEP(       I         bi,bj,iMin,iMax,jMin,jMax,
238       I       bi,bj,iMin,iMax,jMin,jMax,K,       I         etaN,
239       I       etaSurfX,etaSurfY,myTime,myThid)       O         phiSurfX,phiSurfY,
240          IF (openBoundaries) CALL APPLY_OBCS1( bi, bj, K, myThid )       I         myThid )                        
         IF ( .NOT. BOTTOM_LAYER ) THEN  
 C--      Update fields in layer below according to tendency terms  
          CALL CORRECTION_STEP(  
      I        bi,bj,iMin,iMax,jMin,jMax,K+1,  
      I        etaSurfX,etaSurfY,myTime,myThid)  
          IF (openBoundaries) CALL APPLY_OBCS1( bi, bj, K+1, myThid )  
241          ENDIF          ENDIF
 #endif  
 C--     Density of 1st level (below W(1)) reference to level 1  
 #ifdef  INCLUDE_FIND_RHO_CALL  
         CALL FIND_RHO(  
      I     bi, bj, iMin, iMax, jMin, jMax, K, K, eosType,  
      O     rhoKm1,  
      I     myThid )  
 #endif  
242    
243          IF ( .NOT. BOTTOM_LAYER ) THEN  C--     Start of dynamics loop
244  C--      Check static stability with layer below          DO k=1,Nr
245  C--      and mix as needed.  
246  #ifdef  INCLUDE_FIND_RHO_CALL  C--       km1    Points to level above k (=k-1)
247           CALL FIND_RHO(  C--       kup    Cycles through 1,2 to point to layer above
248       I      bi, bj, iMin, iMax, jMin, jMax, K+1, K, eosType,  C--       kDown  Cycles through 2,1 to point to current layer
249       O      rhoKp1,  
250       I      myThid )            km1  = MAX(1,k-1)
251  #endif            kup  = 1+MOD(k+1,2)
252  #ifdef  INCLUDE_CONVECT_CALL            kDown= 1+MOD(k,2)
253           CALL CONVECT(  
254       I       bi,bj,iMin,iMax,jMin,jMax,K+1,rhoKm1,rhoKp1,  #ifdef ALLOW_AUTODIFF_TAMC
255       I       myTime,myIter,myThid)           kkey = (ikey-1)*Nr + k
256  #endif  #endif /* ALLOW_AUTODIFF_TAMC */
257  C--      Recompute density after mixing  
 #ifdef  INCLUDE_FIND_RHO_CALL  
          CALL FIND_RHO(  
      I      bi, bj, iMin, iMax, jMin, jMax, K, K, eosType,  
      O      rhoKm1,  
      I      myThid )  
 #endif  
         ENDIF  
 C--     Calculate buoyancy  
         CALL CALC_BUOYANCY(  
      I      bi,bj,iMin,iMax,jMin,jMax,K,rhoKm1,  
      O      buoyKm1,  
      I      myThid )  
 C--     Integrate hydrostatic balance for phiHyd with BC of  
 C--     phiHyd(z=0)=0  
         CALL CALC_PHI_HYD(  
      I      bi,bj,iMin,iMax,jMin,jMax,K,buoyKm1,buoyKm1,  
      U      phiHyd,  
      I      myThid )  
   
         DO K=2,Nr  
          BOTTOM_LAYER = K .EQ. Nr  
 #ifdef DO_PIPELINED_CORRECTION_STEP  
          IF ( .NOT. BOTTOM_LAYER ) THEN  
 C--       Update fields in layer below according to tendency terms  
           CALL CORRECTION_STEP(  
      I         bi,bj,iMin,iMax,jMin,jMax,K+1,  
      I         etaSurfX,etaSurfY,myTime,myThid)  
           IF (openBoundaries) CALL APPLY_OBCS1( bi, bj, K+1, myThid )  
          ENDIF  
 #endif  
 C--      Density of K level (below W(K)) reference to K level  
 #ifdef  INCLUDE_FIND_RHO_CALL  
          CALL FIND_RHO(  
      I      bi, bj, iMin, iMax, jMin, jMax,  K, K, eosType,  
      O      rhoK,  
      I      myThid )  
 #endif  
          IF ( .NOT. BOTTOM_LAYER ) THEN  
 C--       Check static stability with layer below and mix as needed.  
 C--       Density of K+1 level (below W(K+1)) reference to K level.  
 #ifdef  INCLUDE_FIND_RHO_CALL  
           CALL FIND_RHO(  
      I       bi, bj, iMin, iMax, jMin, jMax,  K+1, K, eosType,  
      O       rhoKp1,  
      I       myThid )  
 #endif  
 #ifdef  INCLUDE_CONVECT_CALL  
           CALL CONVECT(  
      I        bi,bj,iMin,iMax,jMin,jMax,K+1,rhoK,rhoKp1,  
      I        myTime,myIter,myThid)  
 #endif  
 C--       Recompute density after mixing  
 #ifdef  INCLUDE_FIND_RHO_CALL  
           CALL FIND_RHO(  
      I       bi, bj, iMin, iMax, jMin, jMax, K, K, eosType,  
      O       rhoK,  
      I       myThid )  
 #endif  
          ENDIF  
 C--      Calculate buoyancy  
          CALL CALC_BUOYANCY(  
      I       bi,bj,iMin,iMax,jMin,jMax,K,rhoK,  
      O       buoyK,  
      I       myThid )  
258  C--      Integrate hydrostatic balance for phiHyd with BC of  C--      Integrate hydrostatic balance for phiHyd with BC of
259  C--      phiHyd(z=0)=0  C        phiHyd(z=0)=0
260           CALL CALC_PHI_HYD(  C        distinguishe between Stagger and Non Stagger time stepping
261       I        bi,bj,iMin,iMax,jMin,jMax,K,buoyKm1,buoyK,           IF (staggerTimeStep) THEN
262               CALL CALC_PHI_HYD(
263         I        bi,bj,iMin,iMax,jMin,jMax,k,
264         I        gTnm1, gSnm1,
265       U        phiHyd,       U        phiHyd,
266       I        myThid )       I        myThid )
267  C--      Calculate iso-neutral slopes for the GM/Redi parameterisation           ELSE
268  #ifdef  INCLUDE_FIND_RHO_CALL             CALL CALC_PHI_HYD(
269           CALL FIND_RHO(       I        bi,bj,iMin,iMax,jMin,jMax,k,
270       I        bi, bj, iMin, iMax, jMin, jMax, K-1, K, eosType,       I        theta, salt,
271       O        rhoTmp,       U        phiHyd,
      I        myThid )  
 #endif  
 #ifdef  INCLUDE_CALC_ISOSLOPES_CALL  
          CALL CALC_ISOSLOPES(  
      I        bi, bj, iMin, iMax, jMin, jMax, K,  
      I        rhoKm1, rhoK, rhotmp,  
      O        K13, K23, K33, KapGM,  
272       I        myThid )       I        myThid )
273  #endif           ENDIF
          DO J=jMin,jMax  
           DO I=iMin,iMax  
 #ifdef  INCLUDE_FIND_RHO_CALL  
            rhoKm1 (I,J) = rhoK(I,J)  
 #endif  
            buoyKm1(I,J) = buoyK(I,J)  
           ENDDO  
          ENDDO  
         ENDDO ! K  
   
         DO K = Nr, 1, -1  
274    
          kM1  =max(1,k-1)   ! Points to level above k (=k-1)  
          kUp  =1+MOD(k+1,2) ! Cycles through 1,2 to point to layer above  
          kDown=1+MOD(k,2)   ! Cycles through 2,1 to point to current layer  
          iMin = 1-OLx+2  
          iMax = sNx+OLx-1  
          jMin = 1-OLy+2  
          jMax = sNy+OLy-1  
   
 C--      Get temporary terms used by tendency routines  
          CALL CALC_COMMON_FACTORS (  
      I        bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,  
      O        xA,yA,uTrans,vTrans,rTrans,rVel,maskC,maskUp,  
      I        myThid)  
275  #ifdef  INCLUDE_CALC_DIFFUSIVITY_CALL  #ifdef  INCLUDE_CALC_DIFFUSIVITY_CALL
276  C--      Calculate the total vertical diffusivity  C--      Calculate the total vertical diffusivity
277           CALL CALC_DIFFUSIVITY(           CALL CALC_VISCOSITY(
278       I        bi,bj,iMin,iMax,jMin,jMax,K,       I        bi,bj,iMin,iMax,jMin,jMax,k,
279       I        maskC,maskUp,KapGM,K33,       I        maskUp,
280       O        KappaRT,KappaRS,       O        KappaRU,KappaRV,
281       I        myThid)       I        myThid)
282  #endif  #endif
283  C--      Calculate accelerations in the momentum equations  
284    C--      Calculate accelerations in the momentum equations (gU, gV, ...)
285    C        and step forward storing the result in gUnm1, gVnm1, etc...
286           IF ( momStepping ) THEN           IF ( momStepping ) THEN
287            CALL CALC_MOM_RHS(             CALL CALC_MOM_RHS(
288       I         bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,       I         bi,bj,iMin,iMax,jMin,jMax,k,kup,kDown,
289       I         xA,yA,uTrans,vTrans,rTrans,rVel,maskC,       I         phiHyd,KappaRU,KappaRV,
290       I         phiHyd,       U         fVerU, fVerV,
      U         aTerm,xTerm,cTerm,mTerm,pTerm,  
      U         fZon, fMer, fVerU, fVerV,  
      I         myTime, myThid)  
          ENDIF  
 C--      Calculate active tracer tendencies  
          IF ( tempStepping ) THEN  
           CALL CALC_GT(  
      I         bi,bj,iMin,iMax,jMin,jMax, k,kM1,kUp,kDown,  
      I         xA,yA,uTrans,vTrans,rTrans,maskUp,maskC,  
      I         K13,K23,KappaRT,KapGM,  
      U         aTerm,xTerm,fZon,fMer,fVerT,  
291       I         myTime, myThid)       I         myTime, myThid)
292               CALL TIMESTEP(
293         I         bi,bj,iMin,iMax,jMin,jMax,k,
294         I         phiHyd, phiSurfX, phiSurfY,
295         I         myIter, myThid)
296    
297    #ifdef   ALLOW_OBCS
298    C--      Apply open boundary conditions
299             IF (useOBCS) THEN
300               CALL OBCS_APPLY_UV( bi, bj, k, gUnm1, gVnm1, myThid )
301             END IF
302    #endif   /* ALLOW_OBCS */
303    
304    #ifdef   ALLOW_AUTODIFF_TAMC
305    #ifdef   INCLUDE_CD_CODE
306             ELSE
307               DO j=1-OLy,sNy+OLy
308                 DO i=1-OLx,sNx+OLx
309                   guCD(i,j,k,bi,bj) = 0.0
310                   gvCD(i,j,k,bi,bj) = 0.0
311                 END DO
312               END DO
313    #endif   /* INCLUDE_CD_CODE */
314    #endif   /* ALLOW_AUTODIFF_TAMC */
315           ENDIF           ENDIF
          IF ( saltStepping ) THEN  
           CALL CALC_GS(  
      I         bi,bj,iMin,iMax,jMin,jMax, k,kM1,kUp,kDown,  
      I         xA,yA,uTrans,vTrans,rTrans,maskUp,maskC,  
      I         K13,K23,KappaRS,KapGM,  
      U         aTerm,xTerm,fZon,fMer,fVerS,  
      I         myTime, myThid)  
          ENDIF  
 C--      Prediction step (step forward all model variables)  
          CALL TIMESTEP(  
      I       bi,bj,iMin,iMax,jMin,jMax,K,  
      I       myThid)  
          IF (openBoundaries) CALL APPLY_OBCS2( bi, bj, K, myThid )  
 C--      Diagnose barotropic divergence of predicted fields  
          CALL CALC_DIV_GHAT(  
      I       bi,bj,iMin,iMax,jMin,jMax,K,  
      I       xA,yA,  
      I       myThid)  
   
 C--      Cumulative diagnostic calculations (ie. time-averaging)  
 #ifdef INCLUDE_DIAGNOSTICS_INTERFACE_CODE  
          IF (taveFreq.GT.0.) THEN  
           CALL DO_TIME_AVERAGES(  
      I                           myTime, myIter, bi, bj, K, kUp, kDown,  
      I                           K13, K23, rVel, KapGM,  
      I                           myThid )  
          ENDIF  
 #endif  
316    
         ENDDO ! K  
317    
318  C--     Implicit diffusion  C--     end of dynamics k loop (1:Nr)
319          IF (implicitDiffusion) THEN          ENDDO
320           CALL IMPLDIFF( bi, bj, iMin, iMax, jMin, jMax,  
321       I                  KappaRT,KappaRS,  
322       I                  myThid )  
323    C--     Implicit viscosity
324            IF (implicitViscosity.AND.momStepping) THEN
325    #ifdef    ALLOW_AUTODIFF_TAMC
326              idkey = iikey + 3
327    CADJ STORE gUNm1(:,:,:,bi,bj) = comlev1_bibj , key=ikey, byte=isbyte
328    #endif    /* ALLOW_AUTODIFF_TAMC */
329              CALL IMPLDIFF(
330         I         bi, bj, iMin, iMax, jMin, jMax,
331         I         deltaTmom, KappaRU,recip_HFacW,
332         U         gUNm1,
333         I         myThid )
334    #ifdef    ALLOW_AUTODIFF_TAMC
335              idkey = iikey + 4
336    CADJ STORE gVNm1(:,:,:,bi,bj) = comlev1_bibj , key=ikey, byte=isbyte
337    #endif    /* ALLOW_AUTODIFF_TAMC */
338              CALL IMPLDIFF(
339         I         bi, bj, iMin, iMax, jMin, jMax,
340         I         deltaTmom, KappaRV,recip_HFacS,
341         U         gVNm1,
342         I         myThid )
343    
344    #ifdef   ALLOW_OBCS
345    C--      Apply open boundary conditions
346             IF (useOBCS) THEN
347               DO K=1,Nr
348                 CALL OBCS_APPLY_UV( bi, bj, k, gUnm1, gVnm1, myThid )
349               ENDDO
350             END IF
351    #endif   /* ALLOW_OBCS */
352    
353    #ifdef    INCLUDE_CD_CODE
354    #ifdef    ALLOW_AUTODIFF_TAMC
355              idkey = iikey + 5
356    CADJ STORE vVelD(:,:,:,bi,bj) = comlev1_bibj , key=ikey, byte=isbyte
357    #endif    /* ALLOW_AUTODIFF_TAMC */
358              CALL IMPLDIFF(
359         I         bi, bj, iMin, iMax, jMin, jMax,
360         I         deltaTmom, KappaRU,recip_HFacW,
361         U         vVelD,
362         I         myThid )
363    #ifdef    ALLOW_AUTODIFF_TAMC
364              idkey = iikey + 6
365    CADJ STORE uVelD(:,:,:,bi,bj) = comlev1_bibj , key=ikey, byte=isbyte
366    #endif    /* ALLOW_AUTODIFF_TAMC */
367              CALL IMPLDIFF(
368         I         bi, bj, iMin, iMax, jMin, jMax,
369         I         deltaTmom, KappaRV,recip_HFacS,
370         U         uVelD,
371         I         myThid )
372    #endif    /* INCLUDE_CD_CODE */
373    C--     End If implicitViscosity.AND.momStepping
374          ENDIF          ENDIF
375    
376    Cjmc : add for phiHyd output <- but not working if multi tile per CPU
377    c       IF ( DIFFERENT_MULTIPLE(dumpFreq,myTime+deltaTClock,myTime)
378    c    &  .AND. buoyancyRelation .eq. 'ATMOSPHERIC' ) THEN
379    c         WRITE(suff,'(I10.10)') myIter+1
380    c         CALL WRITE_FLD_XYZ_RL('PH.',suff,phiHyd,myIter+1,myThid)
381    c       ENDIF
382    Cjmc(end)
383    
384    #ifdef ALLOW_TIMEAVE
385            IF (taveFreq.GT.0.) THEN
386              CALL TIMEAVE_CUMUL_1T(phiHydtave, phiHyd, Nr,
387         I                              deltaTclock, bi, bj, myThid)
388              IF (ivdc_kappa.NE.0.) THEN
389                CALL TIMEAVE_CUMULATE(ConvectCountTave, ConvectCount, Nr,
390         I                              deltaTclock, bi, bj, myThid)
391              ENDIF
392            ENDIF
393    #endif /* ALLOW_TIMEAVE */
394    
395         ENDDO         ENDDO
396        ENDDO        ENDDO
397    
398  C     write(0,*) 'dynamics: pS ',minval(cg2d_x(1:sNx,1:sNy,:,:)),  #ifndef EXCLUDE_DEBUGMODE
399  C    &                           maxval(cg2d_x(1:sNx,1:sNy,:,:))        If (debugMode) THEN
400  C     write(0,*) 'dynamics: U  ',minval(uVel(1:sNx,1:sNy,1,:,:),mask=uVel(1:sNx,1:sNy,1,:,:).NE.0.),         CALL DEBUG_STATS_RL(1,EtaN,'EtaN (DYNAMICS)',myThid)
401  C    &                           maxval(uVel(1:sNx,1:sNy,1,:,:),mask=uVel(1:sNx,1:sNy,1,:,:).NE.0.)         CALL DEBUG_STATS_RL(Nr,uVel,'Uvel (DYNAMICS)',myThid)
402  C     write(0,*) 'dynamics: V  ',minval(vVel(1:sNx,1:sNy,1,:,:),mask=vVel(1:sNx,1:sNy,1,:,:).NE.0.),         CALL DEBUG_STATS_RL(Nr,vVel,'Vvel (DYNAMICS)',myThid)
403  C    &                           maxval(vVel(1:sNx,1:sNy,1,:,:),mask=vVel(1:sNx,1:sNy,1,:,:).NE.0.)         CALL DEBUG_STATS_RL(Nr,wVel,'Wvel (DYNAMICS)',myThid)
404  C     write(0,*) 'dynamics: rVel(1) ',         CALL DEBUG_STATS_RL(Nr,theta,'Theta (DYNAMICS)',myThid)
405  C    &            minval(rVel(1:sNx,1:sNy,1),mask=rVel(1:sNx,1:sNy,1).NE.0.),         CALL DEBUG_STATS_RL(Nr,salt,'Salt (DYNAMICS)',myThid)
406  C    &            maxval(rVel(1:sNx,1:sNy,1),mask=rVel(1:sNx,1:sNy,1).NE.0.)         CALL DEBUG_STATS_RL(Nr,Gu,'Gu (DYNAMICS)',myThid)
407  C     write(0,*) 'dynamics: rVel(2) ',         CALL DEBUG_STATS_RL(Nr,Gv,'Gv (DYNAMICS)',myThid)
408  C    &            minval(rVel(1:sNx,1:sNy,2),mask=rVel(1:sNx,1:sNy,2).NE.0.),         CALL DEBUG_STATS_RL(Nr,Gt,'Gt (DYNAMICS)',myThid)
409  C    &            maxval(rVel(1:sNx,1:sNy,2),mask=rVel(1:sNx,1:sNy,2).NE.0.)         CALL DEBUG_STATS_RL(Nr,Gs,'Gs (DYNAMICS)',myThid)
410  cblk  write(0,*) 'dynamics: K13',minval(K13(1:sNx,1:sNy,:)),         CALL DEBUG_STATS_RL(Nr,GuNm1,'GuNm1 (DYNAMICS)',myThid)
411  cblk &                           maxval(K13(1:sNx,1:sNy,:))         CALL DEBUG_STATS_RL(Nr,GvNm1,'GvNm1 (DYNAMICS)',myThid)
412  cblk  write(0,*) 'dynamics: K23',minval(K23(1:sNx,1:sNy,:)),         CALL DEBUG_STATS_RL(Nr,GtNm1,'GtNm1 (DYNAMICS)',myThid)
413  cblk &                           maxval(K23(1:sNx,1:sNy,:))         CALL DEBUG_STATS_RL(Nr,GsNm1,'GsNm1 (DYNAMICS)',myThid)
414  cblk  write(0,*) 'dynamics: K33',minval(K33(1:sNx,1:sNy,:)),        ENDIF
415  cblk &                           maxval(K33(1:sNx,1:sNy,:))  #endif
 C     write(0,*) 'dynamics: gT ',minval(gT(1:sNx,1:sNy,:,:,:)),  
 C    &                           maxval(gT(1:sNx,1:sNy,:,:,:))  
 C     write(0,*) 'dynamics: T  ',minval(Theta(1:sNx,1:sNy,:,:,:)),  
 C    &                           maxval(Theta(1:sNx,1:sNy,:,:,:))  
 C     write(0,*) 'dynamics: gS ',minval(gS(1:sNx,1:sNy,:,:,:)),  
 C    &                           maxval(gS(1:sNx,1:sNy,:,:,:))  
 C     write(0,*) 'dynamics: S  ',minval(salt(1:sNx,1:sNy,:,:,:)),  
 C    &                           maxval(salt(1:sNx,1:sNy,:,:,:))  
 C     write(0,*) 'dynamics: phiHyd ',minval(phiHyd/(Gravity*Rhonil),mask=phiHyd.NE.0.),  
 C    &                           maxval(phiHyd/(Gravity*Rhonil))  
 C     CALL PLOT_FIELD_XYZRL( gU, ' GU exiting dyanmics ' ,  
 C    &Nr, 1, myThid )  
 C     CALL PLOT_FIELD_XYZRL( gV, ' GV exiting dyanmics ' ,  
 C    &Nr, 1, myThid )  
 C     CALL PLOT_FIELD_XYZRL( gS, ' GS exiting dyanmics ' ,  
 C    &Nr, 1, myThid )  
 C     CALL PLOT_FIELD_XYZRL( gT, ' GT exiting dyanmics ' ,  
 C    &Nr, 1, myThid )  
 C     CALL PLOT_FIELD_XYZRL( phiHyd, ' phiHyd exiting dyanmics ' ,  
 C    &Nr, 1, myThid )  
   
416    
417        RETURN        RETURN
418        END        END

Legend:
Removed from v.1.40  
changed lines
  Added in v.1.76

  ViewVC Help
Powered by ViewVC 1.1.22