/[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.2 by cnh, Fri Apr 24 02:05:40 1998 UTC revision 1.29 by cnh, Thu Aug 20 19:26:40 1998 UTC
# Line 1  Line 1 
1  C $Header$  C $Header$
2    
3  #include "CPP_EEOPTIONS.h"  #include "CPP_OPTIONS.h"
4    
5        SUBROUTINE DYNAMICS(myThid)        SUBROUTINE DYNAMICS(myTime, myIter, myThid)
6  C     /==========================================================\  C     /==========================================================\
7  C     | SUBROUTINE DYNAMICS                                      |  C     | SUBROUTINE DYNAMICS                                      |
8  C     | o Controlling routine for the explicit part of the model |  C     | o Controlling routine for the explicit part of the model |
# Line 25  C     == Global variables === Line 25  C     == Global variables ===
25  #include "SIZE.h"  #include "SIZE.h"
26  #include "EEPARAMS.h"  #include "EEPARAMS.h"
27  #include "CG2D.h"  #include "CG2D.h"
28    #include "PARAMS.h"
29    #include "DYNVARS.h"
30    
31  C     == Routine arguments ==  C     == Routine arguments ==
32    C     myTime - Current time in simulation
33    C     myIter - Current iteration number in simulation
34  C     myThid - Thread number for this instance of the routine.  C     myThid - Thread number for this instance of the routine.
35        INTEGER myThid        INTEGER myThid
36          _RL myTime
37          INTEGER myIter
38    
39  C     == Local variables  C     == Local variables
40  C     xA, yA                 - Per block temporaries holding face areas  C     xA, yA                 - Per block temporaries holding face areas
41  C     uTrans, vTrans, wTrans - Per block temporaries holding flow transport  C     uTrans, vTrans, wTrans - Per block temporaries holding flow transport
42  C                              o uTrans: Zonal transport  C     wVel                     o uTrans: Zonal transport
43  C                              o vTrans: Meridional transport  C                              o vTrans: Meridional transport
44  C                              o wTrans: Vertical transport  C                              o wTrans: Vertical transport
45    C                              o wVel:   Vertical velocity at upper and lower
46    C                                        cell faces.
47  C     maskC,maskUp             o maskC: land/water mask for tracer cells  C     maskC,maskUp             o maskC: land/water mask for tracer cells
48  C                              o maskUp: land/water mask for W points  C                              o maskUp: land/water mask for W points
49  C     aTerm, xTerm, cTerm    - Work arrays for holding separate terms in  C     aTerm, xTerm, cTerm    - Work arrays for holding separate terms in
# Line 51  C                              o fVer: V Line 59  C                              o fVer: V
59  C                                      is "pipelined" in the vertical  C                                      is "pipelined" in the vertical
60  C                                      so we need an fVer for each  C                                      so we need an fVer for each
61  C                                      variable.  C                                      variable.
62    C     rhoK, rhoKM1   - Density at current level, level above and level below.
63    C     rhoKP1                                                                  
64    C     buoyK, buoyKM1 - Buoyancy at current level and level above.
65    C     phiHyd         - Hydrostatic part of the potential phi.
66    C                      In z coords phiHyd is the hydrostatic pressure anomaly
67    C                      In p coords phiHyd is the geopotential surface height anomaly.
68    C     etaSurfX, etaSurfY - Holds surface elevation gradient in X and Y.
69  C     iMin, iMax - Ranges and sub-block indices on which calculations  C     iMin, iMax - Ranges and sub-block indices on which calculations
70  C     jMin, jMax   are applied.  C     jMin, jMax   are applied.
71  C     bi, bj  C     bi, bj
# Line 61  C                          into fVerTerm Line 76  C                          into fVerTerm
76        _RS yA    (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RS yA    (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
77        _RL uTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL uTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
78        _RL vTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL vTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
79        _RL wTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL rTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
80          _RL rVel  (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)
81        _RS maskC (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RS maskC (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
82        _RS maskUp(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RS maskUp(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
83        _RL aTerm (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL aTerm (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
# Line 75  C                          into fVerTerm Line 91  C                          into fVerTerm
91        _RL fVerS (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)        _RL fVerS (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)
92        _RL fVerU (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)        _RL fVerU (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)
93        _RL fVerV (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)        _RL fVerV (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)
94        _RL pH    (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)        _RL phiHyd(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)
95          _RL rhokm1(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
96          _RL rhokp1(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
97          _RL rhok  (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
98          _RL buoyKM1(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
99          _RL buoyK (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
100          _RL rhotmp(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
101          _RL etaSurfX(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
102          _RL etaSurfY(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
103          _RL K13   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)
104          _RL K23   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)
105          _RL K33   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)
106          _RL KapGM (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
107          _RL KappaZT(1-Olx:sNx+Olx,1-Oly:sNy+Oly,Nz)
108          _RL KappaZS(1-Olx:sNx+Olx,1-Oly:sNy+Oly,Nz)
109    
110        INTEGER iMin, iMax        INTEGER iMin, iMax
111        INTEGER jMin, jMax        INTEGER jMin, jMax
112        INTEGER bi, bj        INTEGER bi, bj
113        INTEGER i, j        INTEGER i, j
114        INTEGER k, kM1, kUp, kDown        INTEGER k, kM1, kUp, kDown
115          LOGICAL BOTTOM_LAYER
116    
117    C---    The algorithm...
118    C
119    C       "Correction Step"
120    C       =================
121    C       Here we update the horizontal velocities with the surface
122    C       pressure such that the resulting flow is either consistent
123    C       with the free-surface evolution or the rigid-lid:
124    C         U[n] = U* + dt x d/dx P
125    C         V[n] = V* + dt x d/dy P
126    C
127    C       "Calculation of Gs"
128    C       ===================
129    C       This is where all the accelerations and tendencies (ie.
130    C       physics, parameterizations etc...) are calculated
131    C         rVel = sum_r ( div. u[n] )
132    C         rho = rho ( theta[n], salt[n] )
133    C         b   = b(rho, theta)
134    C         K31 = K31 ( rho )
135    C         Gu[n] = Gu( u[n], v[n], rVel, b, ... )
136    C         Gv[n] = Gv( u[n], v[n], rVel, b, ... )
137    C         Gt[n] = Gt( theta[n], u[n], v[n], rVel, K31, ... )
138    C         Gs[n] = Gs( salt[n], u[n], v[n], rVel, K31, ... )
139    C
140    C       "Time-stepping" or "Prediction"
141    C       ================================
142    C       The models variables are stepped forward with the appropriate
143    C       time-stepping scheme (currently we use Adams-Bashforth II)
144    C       - For momentum, the result is always *only* a "prediction"
145    C       in that the flow may be divergent and will be "corrected"
146    C       later with a surface pressure gradient.
147    C       - Normally for tracers the result is the new field at time
148    C       level [n+1} *BUT* in the case of implicit diffusion the result
149    C       is also *only* a prediction.
150    C       - We denote "predictors" with an asterisk (*).
151    C         U* = U[n] + dt x ( 3/2 Gu[n] - 1/2 Gu[n-1] )
152    C         V* = V[n] + dt x ( 3/2 Gv[n] - 1/2 Gv[n-1] )
153    C         theta[n+1] = theta[n] + dt x ( 3/2 Gt[n] - 1/2 atG[n-1] )
154    C         salt[n+1] = salt[n] + dt x ( 3/2 Gt[n] - 1/2 atG[n-1] )
155    C       With implicit diffusion:
156    C         theta* = theta[n] + dt x ( 3/2 Gt[n] - 1/2 atG[n-1] )
157    C         salt* = salt[n] + dt x ( 3/2 Gt[n] - 1/2 atG[n-1] )
158    C         (1 + dt * K * d_zz) theta[n] = theta*
159    C         (1 + dt * K * d_zz) salt[n] = salt*
160    C---
161    
162  C--   Set up work arrays with valid (i.e. not NaN) values  C--   Set up work arrays with valid (i.e. not NaN) values
163  C     These inital values do not alter the numerical results. They  C     These inital values do not alter the numerical results. They
# Line 89  C     point numbers. This prevents spuri Line 166  C     point numbers. This prevents spuri
166  C     uninitialised but inert locations.  C     uninitialised but inert locations.
167        DO j=1-OLy,sNy+OLy        DO j=1-OLy,sNy+OLy
168         DO i=1-OLx,sNx+OLx         DO i=1-OLx,sNx+OLx
169          xA(i,j)      = 0.*1. _d 37          xA(i,j)      = 0. _d 0
170          yA(i,j)      = 0.*1. _d 37          yA(i,j)      = 0. _d 0
171          uTrans(i,j)  = 0.*1. _d 37          uTrans(i,j)  = 0. _d 0
172          vTrans(i,j)  = 0.*1. _d 37          vTrans(i,j)  = 0. _d 0
173          aTerm(i,j)   = 0.*1. _d 37          aTerm(i,j)   = 0. _d 0
174          xTerm(i,j)   = 0.*1. _d 37          xTerm(i,j)   = 0. _d 0
175          cTerm(i,j)   = 0.*1. _d 37          cTerm(i,j)   = 0. _d 0
176          mTerm(i,j)   = 0.*1. _d 37          mTerm(i,j)   = 0. _d 0
177          pTerm(i,j)   = 0.*1. _d 37          pTerm(i,j)   = 0. _d 0
178          fZon(i,j)    = 0.*1. _d 37          fZon(i,j)    = 0. _d 0
179          fMer(i,j)    = 0.*1. _d 37          fMer(i,j)    = 0. _d 0
180          DO K=1,nZ          DO K=1,nZ
181           pH (i,j,k)  = 0.*1. _d 37           pH (i,j,k)  = 0. _d 0
182             K13(i,j,k) = 0. _d 0
183             K23(i,j,k) = 0. _d 0
184             K33(i,j,k) = 0. _d 0
185             KappaZT(i,j,k) = 0. _d 0
186          ENDDO          ENDDO
187         ENDDO          rhokm1(i,j)  = 0. _d 0
188        ENDDO          rhok  (i,j)  = 0. _d 0
189  C--   Set up work arrays that need valid initial values          rhokp1(i,j)  = 0. _d 0
190        DO j=1-OLy,sNy+OLy          rhotmp(i,j)  = 0. _d 0
191         DO i=1-OLx,sNx+OLx          buoyKM1(i,j) = 0. _d 0
192          wTrans(i,j)  = 0. _d 0          buoyK  (i,j) = 0. _d 0
193          fVerT(i,j,1) = 0. _d 0          maskC (i,j)  = 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  
194         ENDDO         ENDDO
195        ENDDO        ENDDO
196    
197        DO bj=myByLo(myThid),myByHi(myThid)        DO bj=myByLo(myThid),myByHi(myThid)
198         DO bi=myBxLo(myThid),myBxHi(myThid)         DO bi=myBxLo(myThid),myBxHi(myThid)
199    
200    C--     Set up work arrays that need valid initial values
201            DO j=1-OLy,sNy+OLy
202             DO i=1-OLx,sNx+OLx
203              rTrans(i,j)   = 0. _d 0
204              rVel  (i,j,1) = 0. _d 0
205              rVel  (i,j,2) = 0. _d 0
206              fVerT(i,j,1)  = 0. _d 0
207              fVerT(i,j,2)  = 0. _d 0
208              fVerS(i,j,1)  = 0. _d 0
209              fVerS(i,j,2)  = 0. _d 0
210              fVerU(i,j,1)  = 0. _d 0
211              fVerU(i,j,2)  = 0. _d 0
212              fVerV(i,j,1)  = 0. _d 0
213              fVerV(i,j,2)  = 0. _d 0
214              phiHyd(i,j,1) = 0. _d 0
215              K13(i,j,1)    = 0. _d 0
216              K23(i,j,1)    = 0. _d 0
217              K33(i,j,1)    = 0. _d 0
218              KapGM(i,j)    = GMkbackground
219             ENDDO
220            ENDDO
221    
222          iMin = 1-OLx+1          iMin = 1-OLx+1
223          iMax = sNx+OLx          iMax = sNx+OLx
224          jMin = 1-OLy+1          jMin = 1-OLy+1
225          jMax = sNy+OLy          jMax = sNy+OLy
226    
227  C--     Update fields according to tendency terms          K = 1
228          CALL TIMESTEP(          BOTTOM_LAYER = K .EQ. Nz
      I       bi,bj,iMin,iMax,jMin,jMax,myThid)  
229    
230  C--     Calculate rho with the appropriate equation of state  C--     Calculate gradient of surface pressure
231          CALL FIND_RHO(          CALL CALC_GRAD_ETA_SURF(
232       I       bi,bj,iMin,iMax,jMin,jMax,myThid)       I       bi,bj,iMin,iMax,jMin,jMax,
233         O       etaSurfX,etaSurfY,
234         I       myThid)
235    
236  C--     Calculate static stability and mix where convectively unstable  C--     Update fields in top level according to tendency terms
237          CALL CONVECT(          CALL CORRECTION_STEP(
238       I       bi,bj,iMin,iMax,jMin,jMax,myThid)       I       bi,bj,iMin,iMax,jMin,jMax,K,etaSurfX,etaSurfY,myTime,myThid)
239    
240            IF ( .NOT. BOTTOM_LAYER ) THEN
241    C--      Update fields in layer below according to tendency terms
242             CALL CORRECTION_STEP(
243         I        bi,bj,iMin,iMax,jMin,jMax,K+1,etaSurfX,etaSurfY,myTime,myThid)
244            ENDIF
245    
246    C--     Density of 1st level (below W(1)) reference to level 1
247            CALL FIND_RHO(
248         I     bi, bj, iMin, iMax, jMin, jMax, K, K, eosType,
249         O     rhoKm1,
250         I     myThid )
251    
252            IF ( .NOT. BOTTOM_LAYER ) THEN
253    
254    C--      Check static stability with layer below
255    C        and mix as needed.
256             CALL FIND_RHO(
257         I      bi, bj, iMin, iMax, jMin, jMax, K+1, K, eosType,
258         O      rhoKp1,
259         I      myThid )
260             CALL CONVECT(
261         I       bi,bj,iMin,iMax,jMin,jMax,K+1,rhoKm1,rhoKp1,
262         I       myTime,myIter,myThid)
263    
264    C--      Recompute density after mixing
265             CALL FIND_RHO(
266         I      bi, bj, iMin, iMax, jMin, jMax, K, K, eosType,
267         O      rhoKm1,
268         I      myThid )
269            ENDIF
270    
271    C--     Calculate buoyancy
272            CALL CALC_BUOY(
273         I      bi,bj,iMin,iMax,jMin,jMax,K,rhoKm1,
274         O      buoyKm1,
275         I      myThid )
276    
277  C--     Integrate hydrostatic balance for pH with BC of pH(z=0)=0  C--     Integrate hydrostatic balance for pH with BC of pH(z=0)=0
278          CALL CALC_PH(          CALL CALC_PHI_HYD(
279       I       bi,bj,iMin,iMax,jMin,jMax,       I      bi,bj,iMin,iMax,jMin,jMax,K,buoyKm1,buoyKm1,
280       O       pH,       U      phiHyd,
281         I      myThid )
282    
283            DO K=2,Nz
284    
285             BOTTOM_LAYER = K .EQ. Nz
286             IF ( .NOT. BOTTOM_LAYER ) THEN
287    C--       Update fields in layer below according to tendency terms
288              CALL CORRECTION_STEP(
289         I         bi,bj,iMin,iMax,jMin,jMax,K+1,etaSurfX,etaSurfY,myTime,myThid)
290             ENDIF
291    
292    C--      Density of K level (below W(K)) reference to K level
293             CALL FIND_RHO(
294         I      bi, bj, iMin, iMax, jMin, jMax,  K, K, eosType,
295         O      rhoK,
296         I      myThid )
297    
298             IF ( .NOT. BOTTOM_LAYER ) THEN
299    C--       Check static stability with layer below and mix as needed.
300    C--       Density of K+1 level (below W(K+1)) reference to K level.
301              CALL FIND_RHO(
302         I       bi, bj, iMin, iMax, jMin, jMax,  K+1, K, eosType,
303         O       rhoKp1,
304         I       myThid )
305              CALL CONVECT(
306         I        bi,bj,iMin,iMax,jMin,jMax,K+1,rhoK,rhoKp1,
307         I        myTime,myIter,myThid)
308    C--       Recompute density after mixing
309              CALL FIND_RHO(
310         I       bi, bj, iMin, iMax, jMin, jMax, K, K, eosType,
311         O       rhoK,
312       I       myThid )       I       myThid )
313             ENDIF
314    
315    C--      Calculate buoyancy
316             CALL CALC_BUOY(
317         I       bi,bj,iMin,iMax,jMin,jMax,K,rhoK,
318         O       buoyK,
319         I       myThid )
320    
321    C--      Integrate hydrostatic balance for pH with BC of pH(z=0)=0
322             CALL CALC_PHI_HYD(
323         I       bi,bj,iMin,iMax,jMin,jMax,K,buoyKm1,buoyK,
324         U       phiHyd,
325         I       myThid )
326    C--      Calculate iso-neutral slopes for the GM/Redi parameterisation
327             CALL FIND_RHO(
328         I      bi, bj, iMin, iMax, jMin, jMax, K-1, K, eosType,
329         O      rhoTmp,
330         I      myThid )
331             CALL CALC_ISOSLOPES(
332         I             bi, bj, iMin, iMax, jMin, jMax, K,
333         I             rhoKm1, rhoK, rhotmp,
334         O             K13, K23, K33, KapGM,
335         I             myThid )
336             DO J=jMin,jMax
337              DO I=iMin,iMax
338               rhoKm1 (I,J) = rhoK(I,J)
339               buoyKm1(I,J) = buoyK(I,J)
340              ENDDO
341             ENDDO
342    
343            ENDDO ! K
344    
345          DO K = Nz, 1, -1          DO K = Nz, 1, -1
346           kM1  =max(1,k-1)   ! Points to level above k (=k-1)           kM1  =max(1,k-1)   ! Points to level above k (=k-1)
# Line 158  C--     Integrate hydrostatic balance fo Line 354  C--     Integrate hydrostatic balance fo
354  C--      Get temporary terms used by tendency routines  C--      Get temporary terms used by tendency routines
355           CALL CALC_COMMON_FACTORS (           CALL CALC_COMMON_FACTORS (
356       I        bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,       I        bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,
357       O        xA,yA,uTrans,vTrans,wTrans,maskC,maskUp,       O        xA,yA,uTrans,vTrans,wTrans,wVel,maskC,maskUp,
358       I        myThid)       I        myThid)
359    
360  C--      Calculate accelerations in the momentum equations  C--      Calculate the total vertical diffusivity
361           CALL CALC_MOM_RHS(           CALL CALC_DIFFUSIVITY(
362       I        bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,       I        bi,bj,iMin,iMax,jMin,jMax,K,
363       I        xA,yA,uTrans,vTrans,wTrans,maskC,       I        maskC,maskUp,KapGM,K33,
364       I        pH,       O        KappaZT,KappaZS,
      U        aTerm,xTerm,cTerm,mTerm,pTerm,  
      U        fZon, fMer, fVerU, fVerV,  
365       I        myThid)       I        myThid)
366    
367  C--      Calculate active tracer tendencies  C--      Calculate accelerations in the momentum equations
368           CALL CALC_GT(           IF ( momStepping ) THEN
369       I        bi,bj,iMin,iMax,jMin,jMax, k,kM1,kUp,kDown,            CALL CALC_MOM_RHS(
370       I        xA,yA,uTrans,vTrans,wTrans,maskUp,       I         bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,
371       U        aTerm,xTerm,fZon,fMer,fVerT,       I         xA,yA,uTrans,vTrans,wTrans,wVel,maskC,
372       I        myThid)       I         phiHyd,
373  Cdbg     CALL CALC_GS(       U         aTerm,xTerm,cTerm,mTerm,pTerm,
374  Cdbg I        bi,bj,iMin,iMax,jMin,jMax, k,kM1,kUp,kDown,       U         fZon, fMer, fVerU, fVerV,
375  Cdbg I        xA,yA,uTrans,vTrans,wTrans,maskUp,       I         myThid)
376  Cdbg U        aTerm,xTerm,fZon,fMer,fVerS,           ENDIF
 Cdbg I        myThid)  
377    
378          ENDDO  C--      Calculate active tracer tendencies
379             IF ( tempStepping ) THEN
380              CALL CALC_GT(
381         I         bi,bj,iMin,iMax,jMin,jMax, k,kM1,kUp,kDown,
382         I         xA,yA,uTrans,vTrans,wTrans,maskUp,maskC,
383         I         K13,K23,KappaZT,KapGM,
384         U         aTerm,xTerm,fZon,fMer,fVerT,
385         I         myThid)
386             ENDIF
387             IF ( saltStepping ) THEN
388              CALL CALC_GS(
389         I         bi,bj,iMin,iMax,jMin,jMax, k,kM1,kUp,kDown,
390         I         xA,yA,uTrans,vTrans,wTrans,maskUp,maskC,
391         I         K13,K23,KappaZS,KapGM,
392         U         aTerm,xTerm,fZon,fMer,fVerS,
393         I         myThid)
394             ENDIF
395    
396    C--      Prediction step (step forward all model variables)
397             CALL TIMESTEP(
398         I       bi,bj,iMin,iMax,jMin,jMax,K,
399         I       myThid)
400    
401    C--      Diagnose barotropic divergence of predicted fields
402             CALL DIV_G(
403         I       bi,bj,iMin,iMax,jMin,jMax,K,
404         I       xA,yA,
405         I       myThid)
406    
407    C--      Cumulative diagnostic calculations (ie. time-averaging)
408    #ifdef ALLOW_DIAGNOSTICS
409             IF (taveFreq.GT.0.) THEN
410              CALL DO_TIME_AVERAGES(
411         I                           myTime, myIter, bi, bj, K, kUp, kDown,
412         I                           K13, K23, wVel, KapGM,
413         I                           myThid )
414             ENDIF
415    #endif
416    
417            ENDDO ! K
418    
419    C--     Implicit diffusion
420            IF (implicitDiffusion) THEN
421             CALL IMPLDIFF( bi, bj, iMin, iMax, jMin, jMax,
422         I                  KappaZT,KappaZS,
423         I                  myThid )
424            ENDIF
425    
426         ENDDO         ENDDO
427        ENDDO        ENDDO
428    
429    C     write(0,*) 'dynamics: pS ',minval(cg2d_x(1:sNx,1:sNy,:,:)),
430    C    &                           maxval(cg2d_x(1:sNx,1:sNy,:,:))
431    C     write(0,*) 'dynamics: U  ',minval(uVel(1:sNx,1:sNy,1,:,:),mask=uVel(1:sNx,1:sNy,1,:,:).NE.0.),
432    C    &                           maxval(uVel(1:sNx,1:sNy,1,:,:),mask=uVel(1:sNx,1:sNy,1,:,:).NE.0.)
433    C     write(0,*) 'dynamics: V  ',minval(vVel(1:sNx,1:sNy,1,:,:),mask=vVel(1:sNx,1:sNy,1,:,:).NE.0.),
434    C    &                           maxval(vVel(1:sNx,1:sNy,1,:,:),mask=vVel(1:sNx,1:sNy,1,:,:).NE.0.)
435    C     write(0,*) 'dynamics: wVel(1) ',
436    C    &            minval(wVel(1:sNx,1:sNy,1),mask=wVel(1:sNx,1:sNy,1).NE.0.),
437    C    &            maxval(wVel(1:sNx,1:sNy,1),mask=wVel(1:sNx,1:sNy,1).NE.0.)
438    C     write(0,*) 'dynamics: wVel(2) ',
439    C    &            minval(wVel(1:sNx,1:sNy,2),mask=wVel(1:sNx,1:sNy,2).NE.0.),
440    C    &            maxval(wVel(1:sNx,1:sNy,2),mask=wVel(1:sNx,1:sNy,2).NE.0.)
441    cblk  write(0,*) 'dynamics: K13',minval(K13(1:sNx,1:sNy,:)),
442    cblk &                           maxval(K13(1:sNx,1:sNy,:))
443    cblk  write(0,*) 'dynamics: K23',minval(K23(1:sNx,1:sNy,:)),
444    cblk &                           maxval(K23(1:sNx,1:sNy,:))
445    cblk  write(0,*) 'dynamics: K33',minval(K33(1:sNx,1:sNy,:)),
446    cblk &                           maxval(K33(1:sNx,1:sNy,:))
447    C     write(0,*) 'dynamics: gT ',minval(gT(1:sNx,1:sNy,:,:,:)),
448    C    &                           maxval(gT(1:sNx,1:sNy,:,:,:))
449    C     write(0,*) 'dynamics: T  ',minval(Theta(1:sNx,1:sNy,:,:,:)),
450    C    &                           maxval(Theta(1:sNx,1:sNy,:,:,:))
451    C     write(0,*) 'dynamics: gS ',minval(gS(1:sNx,1:sNy,:,:,:)),
452    C    &                           maxval(gS(1:sNx,1:sNy,:,:,:))
453    C     write(0,*) 'dynamics: S  ',minval(salt(1:sNx,1:sNy,:,:,:)),
454    C    &                           maxval(salt(1:sNx,1:sNy,:,:,:))
455    C     write(0,*) 'dynamics: pH ',minval(pH/(Gravity*Rhonil),mask=ph.NE.0.),
456    C    &                           maxval(pH/(Gravity*Rhonil))
457    
458        RETURN        RETURN
459        END        END

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.29

  ViewVC Help
Powered by ViewVC 1.1.22