/[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.15 by adcroft, Tue Jun 9 15:58:36 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(myTime, myIter, myThid)        SUBROUTINE DYNAMICS(myTime, myIter, myThid)
6  C     /==========================================================\  C     /==========================================================\
# Line 59  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 69  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 wVel  (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)        _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 84  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)        _RL rhokm1(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
96        _RL rhokp1(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _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)        _RL rhotmp(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
101        _RL pSurfX(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL etaSurfX(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
102        _RL pSurfY(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL etaSurfY(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
103        _RL K13   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)        _RL K13   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)
104        _RL K23   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)        _RL K23   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)
105        _RL K33   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)        _RL K33   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)
106        _RL KapGM (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL KapGM (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
107        _RL KappaZT(1-Olx:sNx+Olx,1-Oly:sNy+Oly,Nz)        _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...  C---    The algorithm...
118  C  C
# Line 116  C       "Calculation of Gs" Line 128  C       "Calculation of Gs"
128  C       ===================  C       ===================
129  C       This is where all the accelerations and tendencies (ie.  C       This is where all the accelerations and tendencies (ie.
130  C       physics, parameterizations etc...) are calculated  C       physics, parameterizations etc...) are calculated
131  C         w = sum_z ( div. u[n] )  C         rVel = sum_r ( div. u[n] )
132  C         rho = rho ( theta[n], salt[n] )  C         rho = rho ( theta[n], salt[n] )
133    C         b   = b(rho, theta)
134  C         K31 = K31 ( rho )  C         K31 = K31 ( rho )
135  C         Gu[n] = Gu( u[n], v[n], w, rho, Ph, ... )  C         Gu[n] = Gu( u[n], v[n], rVel, b, ... )
136  C         Gv[n] = Gv( u[n], v[n], w, rho, Ph, ... )  C         Gv[n] = Gv( u[n], v[n], rVel, b, ... )
137  C         Gt[n] = Gt( theta[n], u[n], v[n], w, K31, ... )  C         Gt[n] = Gt( theta[n], u[n], v[n], rVel, K31, ... )
138  C         Gs[n] = Gs( salt[n], u[n], v[n], w, K31, ... )  C         Gs[n] = Gs( salt[n], u[n], v[n], rVel, K31, ... )
139  C  C
140  C       "Time-stepping" or "Prediction"  C       "Time-stepping" or "Prediction"
141  C       ================================  C       ================================
# Line 172  C     uninitialised but inert locations. Line 185  C     uninitialised but inert locations.
185           KappaZT(i,j,k) = 0. _d 0           KappaZT(i,j,k) = 0. _d 0
186          ENDDO          ENDDO
187          rhokm1(i,j)  = 0. _d 0          rhokm1(i,j)  = 0. _d 0
188            rhok  (i,j)  = 0. _d 0
189          rhokp1(i,j)  = 0. _d 0          rhokp1(i,j)  = 0. _d 0
190          rhotmp(i,j)  = 0. _d 0          rhotmp(i,j)  = 0. _d 0
191            buoyKM1(i,j) = 0. _d 0
192            buoyK  (i,j) = 0. _d 0
193            maskC (i,j)  = 0. _d 0
194         ENDDO         ENDDO
195        ENDDO        ENDDO
196    
# Line 183  C     uninitialised but inert locations. Line 200  C     uninitialised but inert locations.
200  C--     Set up work arrays that need valid initial values  C--     Set up work arrays that need valid initial values
201          DO j=1-OLy,sNy+OLy          DO j=1-OLy,sNy+OLy
202           DO i=1-OLx,sNx+OLx           DO i=1-OLx,sNx+OLx
203            wTrans(i,j)  = 0. _d 0            rTrans(i,j)   = 0. _d 0
204            wVel  (i,j,1) = 0. _d 0            rVel  (i,j,1) = 0. _d 0
205            wVel  (i,j,2) = 0. _d 0            rVel  (i,j,2) = 0. _d 0
206            fVerT(i,j,1) = 0. _d 0            fVerT(i,j,1)  = 0. _d 0
207            fVerT(i,j,2) = 0. _d 0            fVerT(i,j,2)  = 0. _d 0
208            fVerS(i,j,1) = 0. _d 0            fVerS(i,j,1)  = 0. _d 0
209            fVerS(i,j,2) = 0. _d 0            fVerS(i,j,2)  = 0. _d 0
210            fVerU(i,j,1) = 0. _d 0            fVerU(i,j,1)  = 0. _d 0
211            fVerU(i,j,2) = 0. _d 0            fVerU(i,j,2)  = 0. _d 0
212            fVerV(i,j,1) = 0. _d 0            fVerV(i,j,1)  = 0. _d 0
213            fVerV(i,j,2) = 0. _d 0            fVerV(i,j,2)  = 0. _d 0
214            pH(i,j,1) = 0. _d 0            phiHyd(i,j,1) = 0. _d 0
215            K13(i,j,1) = 0. _d 0            K13(i,j,1)    = 0. _d 0
216            K23(i,j,1) = 0. _d 0            K23(i,j,1)    = 0. _d 0
217            K33(i,j,1) = 0. _d 0            K33(i,j,1)    = 0. _d 0
218            KapGM(i,j) = 0. _d 0            KapGM(i,j)    = GMkbackground
219           ENDDO           ENDDO
220          ENDDO          ENDDO
221    
# Line 207  C--     Set up work arrays that need val Line 224  C--     Set up work arrays that need val
224          jMin = 1-OLy+1          jMin = 1-OLy+1
225          jMax = sNy+OLy          jMax = sNy+OLy
226    
227            K = 1
228            BOTTOM_LAYER = K .EQ. Nz
229    
230  C--     Calculate gradient of surface pressure  C--     Calculate gradient of surface pressure
231          CALL GRAD_PSURF(          CALL CALC_GRAD_ETA_SURF(
232       I       bi,bj,iMin,iMax,jMin,jMax,       I       bi,bj,iMin,iMax,jMin,jMax,
233       O       pSurfX,pSurfY,       O       etaSurfX,etaSurfY,
234       I       myThid)       I       myThid)
235    
236  C--     Update fields in top level according to tendency terms  C--     Update fields in top level according to tendency terms
237          CALL CORRECTION_STEP(          CALL CORRECTION_STEP(
238       I       bi,bj,iMin,iMax,jMin,jMax,1,pSurfX,pSurfY,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  C--     Density of 1st level (below W(1)) reference to level 1
247          CALL FIND_RHO(          CALL FIND_RHO(
248       I     bi, bj, iMin, iMax, jMin, jMax, 1, 1, eosType,       I     bi, bj, iMin, iMax, jMin, jMax, K, K, eosType,
249       O     rhoKm1,       O     rhoKm1,
250       I     myThid )       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,1,rhoKm1,rhoKm1,       I      bi,bj,iMin,iMax,jMin,jMax,K,buoyKm1,buoyKm1,
280       U      pH,       U      phiHyd,
281       I      myThid )       I      myThid )
         DO J=jMin,jMax  
          DO I=iMin,iMax  
           rhoKp1(I,J)=rhoKm1(I,J)  
          ENDDO  
         ENDDO  
282    
283          DO K=2,Nz          DO K=2,Nz
284  C--     Update fields in Kth level according to tendency terms  
285          CALL CORRECTION_STEP(           BOTTOM_LAYER = K .EQ. Nz
286       I       bi,bj,iMin,iMax,jMin,jMax,K,pSurfX,pSurfY,myThid)           IF ( .NOT. BOTTOM_LAYER ) THEN
287  C--     Density of K-1 level (above W(K)) reference to K-1 level  C--       Update fields in layer below according to tendency terms
288  copt    CALL FIND_RHO(            CALL CORRECTION_STEP(
289  copt I     bi, bj, iMin, iMax, jMin, jMax,  K-1, K-1, eosType,       I         bi,bj,iMin,iMax,jMin,jMax,K+1,etaSurfX,etaSurfY,myTime,myThid)
290  copt O     rhoKm1,           ENDIF
291  copt I     myThid )  
292  C       rhoKm1=rhoKp1  C--      Density of K level (below W(K)) reference to K level
293          DO J=jMin,jMax           CALL FIND_RHO(
294           DO I=iMin,iMax       I      bi, bj, iMin, iMax, jMin, jMax,  K, K, eosType,
295            rhoKm1(I,J)=rhoKp1(I,J)       O      rhoK,
          ENDDO  
         ENDDO  
 C--     Density of K level (below W(K)) reference to K level  
         CALL FIND_RHO(  
      I     bi, bj, iMin, iMax, jMin, jMax,  K, K, eosType,  
      O     rhoKp1,  
      I     myThid )  
 C--     Density of K-1 level (above W(K)) reference to K level  
         CALL FIND_RHO(  
      I     bi, bj, iMin, iMax, jMin, jMax,  K-1, K, eosType,  
      O     rhotmp,  
      I     myThid )  
 C--     Calculate iso-neutral slopes for the GM/Redi parameterisation  
         CALL CALC_ISOSLOPES(  
      I            bi, bj, iMin, iMax, jMin, jMax, K,  
      I            rhoKm1, rhoKp1, rhotmp,  
      O            K13, K23, K33, KapGM,  
      I            myThid )  
 C--     Calculate static stability and mix where convectively unstable  
         CALL CONVECT(  
      I      bi,bj,iMin,iMax,jMin,jMax,K,rhotmp,rhoKp1,  
      I      myTime,myIter,myThid)  
 C--     Density of K-1 level (above W(K)) reference to K-1 level  
         CALL FIND_RHO(  
      I     bi, bj, iMin, iMax, jMin, jMax,  K-1, K-1, eosType,  
      O     rhoKm1,  
      I     myThid )  
 C--     Density of K level (below W(K)) referenced to K level  
         CALL FIND_RHO(  
      I     bi, bj, iMin, iMax, jMin, jMax,  K, K, eosType,  
      O     rhoKp1,  
      I     myThid )  
 C--     Integrate hydrostatic balance for pH with BC of pH(z=0)=0  
         CALL CALC_PH(  
      I      bi,bj,iMin,iMax,jMin,jMax,K,rhoKm1,rhoKp1,  
      U      pH,  
296       I      myThid )       I      myThid )
297    
298          ENDDO ! K           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 )
313             ENDIF
314    
315  C--     Initial boundary condition on barotropic divergence integral  C--      Calculate buoyancy
316          DO j=1-OLy,sNy+OLy           CALL CALC_BUOY(
317           DO i=1-OLx,sNx+OLx       I       bi,bj,iMin,iMax,jMin,jMax,K,rhoK,
318            cg2d_b(i,j,bi,bj) = 0. _d 0       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           ENDDO
342          ENDDO  
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 312  C--      Calculate the total vertical di Line 361  C--      Calculate the total vertical di
361           CALL CALC_DIFFUSIVITY(           CALL CALC_DIFFUSIVITY(
362       I        bi,bj,iMin,iMax,jMin,jMax,K,       I        bi,bj,iMin,iMax,jMin,jMax,K,
363       I        maskC,maskUp,KapGM,K33,       I        maskC,maskUp,KapGM,K33,
364       O        KappaZT,       O        KappaZT,KappaZS,
365       I        myThid)       I        myThid)
366    
367  C--      Calculate accelerations in the momentum equations  C--      Calculate accelerations in the momentum equations
# Line 320  C--      Calculate accelerations in the Line 369  C--      Calculate accelerations in the
369            CALL CALC_MOM_RHS(            CALL CALC_MOM_RHS(
370       I         bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,       I         bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,
371       I         xA,yA,uTrans,vTrans,wTrans,wVel,maskC,       I         xA,yA,uTrans,vTrans,wTrans,wVel,maskC,
372       I         pH,       I         phiHyd,
373       U         aTerm,xTerm,cTerm,mTerm,pTerm,       U         aTerm,xTerm,cTerm,mTerm,pTerm,
374       U         fZon, fMer, fVerU, fVerV,       U         fZon, fMer, fVerU, fVerV,
375       I         myThid)       I         myThid)
# Line 330  C--      Calculate active tracer tendenc Line 379  C--      Calculate active tracer tendenc
379           IF ( tempStepping ) THEN           IF ( tempStepping ) THEN
380            CALL CALC_GT(            CALL CALC_GT(
381       I         bi,bj,iMin,iMax,jMin,jMax, k,kM1,kUp,kDown,       I         bi,bj,iMin,iMax,jMin,jMax, k,kM1,kUp,kDown,
382       I         xA,yA,uTrans,vTrans,wTrans,maskUp,       I         xA,yA,uTrans,vTrans,wTrans,maskUp,maskC,
383       I         K13,K23,KappaZT,KapGM,       I         K13,K23,KappaZT,KapGM,
384       U         aTerm,xTerm,fZon,fMer,fVerT,       U         aTerm,xTerm,fZon,fMer,fVerT,
385       I         myThid)       I         myThid)
386           ENDIF           ENDIF
387  Cdbg     CALL CALC_GS(           IF ( saltStepping ) THEN
388  Cdbg I        bi,bj,iMin,iMax,jMin,jMax, k,kM1,kUp,kDown,            CALL CALC_GS(
389  Cdbg I        xA,yA,uTrans,vTrans,wTrans,maskUp,       I         bi,bj,iMin,iMax,jMin,jMax, k,kM1,kUp,kDown,
390  Cdbg I        K13,K23,K33,KapGM,       I         xA,yA,uTrans,vTrans,wTrans,maskUp,maskC,
391  Cdbg U        aTerm,xTerm,fZon,fMer,fVerS,       I         K13,K23,KappaZS,KapGM,
392  Cdbg I        myThid)       U         aTerm,xTerm,fZon,fMer,fVerS,
393         I         myThid)
394             ENDIF
395    
396  C--      Prediction step (step forward all model variables)  C--      Prediction step (step forward all model variables)
397           CALL TIMESTEP(           CALL TIMESTEP(
# Line 353  C--      Diagnose barotropic divergence Line 404  C--      Diagnose barotropic divergence
404       I       xA,yA,       I       xA,yA,
405       I       myThid)       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          ENDDO ! K
418    
419  C--     Implicit diffusion  C--     Implicit diffusion
420          IF (implicitDiffusion) THEN          IF (implicitDiffusion) THEN
421           CALL IMPLDIFF( bi, bj, iMin, iMax, jMin, jMax,           CALL IMPLDIFF( bi, bj, iMin, iMax, jMin, jMax,
422       I                  KappaZT,       I                  KappaZT,KappaZS,
423       I                  myThid )       I                  myThid )
424          ENDIF          ENDIF
425    
426         ENDDO         ENDDO
427        ENDDO        ENDDO
428    
429        write(0,*) 'dynamics: pS ',minval(cg2d_x(1:sNx,1:sNy,:,:)),  C     write(0,*) 'dynamics: pS ',minval(cg2d_x(1:sNx,1:sNy,:,:)),
430       &                           maxval(cg2d_x(1:sNx,1:sNy,:,:))  C    &                           maxval(cg2d_x(1:sNx,1:sNy,:,:))
431        write(0,*) 'dynamics: U  ',minval(uVel(1:sNx,1:sNy,:,:,:)),  C     write(0,*) 'dynamics: U  ',minval(uVel(1:sNx,1:sNy,1,:,:),mask=uVel(1:sNx,1:sNy,1,:,:).NE.0.),
432       &                           maxval(uVel(1:sNx,1:sNy,:,:,:))  C    &                           maxval(uVel(1:sNx,1:sNy,1,:,:),mask=uVel(1:sNx,1:sNy,1,:,:).NE.0.)
433        write(0,*) 'dynamics: V  ',minval(vVel(1:sNx,1:sNy,:,:,:)),  C     write(0,*) 'dynamics: V  ',minval(vVel(1:sNx,1:sNy,1,:,:),mask=vVel(1:sNx,1:sNy,1,:,:).NE.0.),
434       &                           maxval(vVel(1:sNx,1:sNy,:,:,:))  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,:)),  cblk  write(0,*) 'dynamics: K13',minval(K13(1:sNx,1:sNy,:)),
442  cblk &                           maxval(K13(1:sNx,1:sNy,:))  cblk &                           maxval(K13(1:sNx,1:sNy,:))
443  cblk  write(0,*) 'dynamics: K23',minval(K23(1:sNx,1:sNy,:)),  cblk  write(0,*) 'dynamics: K23',minval(K23(1:sNx,1:sNy,:)),
444  cblk &                           maxval(K23(1:sNx,1:sNy,:))  cblk &                           maxval(K23(1:sNx,1:sNy,:))
445  cblk  write(0,*) 'dynamics: K33',minval(K33(1:sNx,1:sNy,:)),  cblk  write(0,*) 'dynamics: K33',minval(K33(1:sNx,1:sNy,:)),
446  cblk &                           maxval(K33(1:sNx,1:sNy,:))  cblk &                           maxval(K33(1:sNx,1:sNy,:))
447        write(0,*) 'dynamics: gT ',minval(gT(1:sNx,1:sNy,:,:,:)),  C     write(0,*) 'dynamics: gT ',minval(gT(1:sNx,1:sNy,:,:,:)),
448       &                           maxval(gT(1:sNx,1:sNy,:,:,:))  C    &                           maxval(gT(1:sNx,1:sNy,:,:,:))
449        write(0,*) 'dynamics: T  ',minval(Theta(1:sNx,1:sNy,:,:,:)),  C     write(0,*) 'dynamics: T  ',minval(Theta(1:sNx,1:sNy,:,:,:)),
450       &                           maxval(Theta(1:sNx,1:sNy,:,:,:))  C    &                           maxval(Theta(1:sNx,1:sNy,:,:,:))
451  cblk  write(0,*) 'dynamics: pH ',minval(pH/(Gravity*Rhonil)),  C     write(0,*) 'dynamics: gS ',minval(gS(1:sNx,1:sNy,:,:,:)),
452  cblk &                           maxval(pH/(Gravity*Rhonil))  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.15  
changed lines
  Added in v.1.29

  ViewVC Help
Powered by ViewVC 1.1.22