/[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.30 by cnh, Thu Aug 20 20:05:01 1998 UTC revision 1.39 by adcroft, Tue Dec 8 19:44:28 1998 UTC
# Line 38  C     myThid - Thread number for this in Line 38  C     myThid - Thread number for this in
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, rTrans - Per block temporaries holding flow transport  C     uTrans, vTrans, rTrans - Per block temporaries holding flow
42    C                              transport
43  C     rVel                     o uTrans: Zonal transport  C     rVel                     o uTrans: Zonal transport
44  C                              o vTrans: Meridional transport  C                              o vTrans: Meridional transport
45  C                              o rTrans: Vertical transport  C                              o rTrans: Vertical transport
46  C                              o rVel:   Vertical velocity at upper and lower  C                              o rVel:   Vertical velocity at upper and
47  C                                        cell faces.  C                                        lower cell faces.
48  C     maskC,maskUp             o maskC: land/water mask for tracer cells  C     maskC,maskUp             o maskC: land/water mask for tracer cells
49  C                              o maskUp: land/water mask for W points  C                              o maskUp: land/water mask for W points
50  C     aTerm, xTerm, cTerm    - Work arrays for holding separate terms in  C     aTerm, xTerm, cTerm    - Work arrays for holding separate terms in
# Line 59  C                              o fVer: V Line 60  C                              o fVer: V
60  C                                      is "pipelined" in the vertical  C                                      is "pipelined" in the vertical
61  C                                      so we need an fVer for each  C                                      so we need an fVer for each
62  C                                      variable.  C                                      variable.
63  C     rhoK, rhoKM1   - Density at current level, level above and level below.  C     rhoK, rhoKM1   - Density at current level, level above and level
64    C                      below.
65  C     rhoKP1                                                                    C     rhoKP1                                                                  
66  C     buoyK, buoyKM1 - Buoyancy at current level and level above.  C     buoyK, buoyKM1 - Buoyancy at current level and level above.
67  C     phiHyd         - Hydrostatic part of the potential phi.  C     phiHyd         - Hydrostatic part of the potential phiHydi.
68  C                      In z coords phiHyd is the hydrostatic pressure anomaly  C                      In z coords phiHydiHyd is the hydrostatic
69  C                      In p coords phiHyd is the geopotential surface height  C                      pressure anomaly
70    C                      In p coords phiHydiHyd is the geopotential
71    C                      surface height
72  C                      anomaly.  C                      anomaly.
73  C     etaSurfX,      - Holds surface elevation gradient in X and Y.  C     etaSurfX,      - Holds surface elevation gradient in X and Y.
74  C     etaSurfY  C     etaSurfY
# Line 72  C     K13, K23, K33  - Non-zero elements Line 76  C     K13, K23, K33  - Non-zero elements
76  C                      diffusion tensor.  C                      diffusion tensor.
77  C     KapGM          - Spatially varying Visbeck et. al mixing coeff.  C     KapGM          - Spatially varying Visbeck et. al mixing coeff.
78  C     KappaRT,       - Total diffusion in vertical for T and S.  C     KappaRT,       - Total diffusion in vertical for T and S.
79  C     KappaRS          ( background + spatially varying, isopycnal term).  C     KappaRS          (background + spatially varying, isopycnal term).
80  C     iMin, iMax     - Ranges and sub-block indices on which calculations  C     iMin, iMax     - Ranges and sub-block indices on which calculations
81  C     jMin, jMax       are applied.  C     jMin, jMax       are applied.
82  C     bi, bj  C     bi, bj
83  C     k, kUp,        - Index for layer above and below. kUp and kDown  C     k, kUp,        - Index for layer above and below. kUp and kDown
84  C     kDown, kM1       are switched with layer to be the appropriate index  C     kDown, kM1       are switched with layer to be the appropriate
85  C                      into fVerTerm  C                      index into fVerTerm.
86        _RS xA      (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RS xA      (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
87        _RS yA      (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RS yA      (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
88        _RL uTrans  (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL uTrans  (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
# Line 98  C                      into fVerTerm Line 102  C                      into fVerTerm
102        _RL fVerS   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)        _RL fVerS   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)
103        _RL fVerU   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)        _RL fVerU   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)
104        _RL fVerV   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)        _RL fVerV   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)
105        _RL phiHyd  (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)        _RL phiHyd  (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr)
106        _RL rhokm1  (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL rhokm1  (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
107        _RL rhokp1  (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL rhokp1  (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
108        _RL rhok    (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL rhok    (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
# Line 107  C                      into fVerTerm Line 111  C                      into fVerTerm
111        _RL rhotmp  (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL rhotmp  (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
112        _RL etaSurfX(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL etaSurfX(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
113        _RL etaSurfY(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL etaSurfY(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
114        _RL K13     (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)        _RL K13     (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr)
115        _RL K23     (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)        _RL K23     (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr)
116        _RL K33     (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)        _RL K33     (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr)
117        _RL KapGM   (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL KapGM   (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
118        _RL KappaZT (1-Olx:sNx+Olx,1-Oly:sNy+Oly,Nz)        _RL KappaRT (1-Olx:sNx+Olx,1-Oly:sNy+Oly,Nr)
119        _RL KappaZS (1-Olx:sNx+Olx,1-Oly:sNy+Oly,Nz)        _RL KappaRS (1-Olx:sNx+Olx,1-Oly:sNy+Oly,Nr)
120    
121        INTEGER iMin, iMax        INTEGER iMin, iMax
122        INTEGER jMin, jMax        INTEGER jMin, jMax
# Line 134  C Line 138  C
138  C       "Calculation of Gs"  C       "Calculation of Gs"
139  C       ===================  C       ===================
140  C       This is where all the accelerations and tendencies (ie.  C       This is where all the accelerations and tendencies (ie.
141  C       physics, parameterizations etc...) are calculated  C       phiHydysics, parameterizations etc...) are calculated
142  C         rVel = sum_r ( div. u[n] )  C         rVel = sum_r ( div. u[n] )
143  C         rho = rho ( theta[n], salt[n] )  C         rho = rho ( theta[n], salt[n] )
144  C         b   = b(rho, theta)  C         b   = b(rho, theta)
# Line 184  C     uninitialised but inert locations. Line 188  C     uninitialised but inert locations.
188          pTerm(i,j)   = 0. _d 0          pTerm(i,j)   = 0. _d 0
189          fZon(i,j)    = 0. _d 0          fZon(i,j)    = 0. _d 0
190          fMer(i,j)    = 0. _d 0          fMer(i,j)    = 0. _d 0
191          DO K=1,nZ          DO K=1,Nr
192           pH (i,j,k)  = 0. _d 0           phiHyd (i,j,k)  = 0. _d 0
193           K13(i,j,k)  = 0. _d 0           K13(i,j,k)  = 0. _d 0
194           K23(i,j,k)  = 0. _d 0           K23(i,j,k)  = 0. _d 0
195           K33(i,j,k)  = 0. _d 0           K33(i,j,k)  = 0. _d 0
196           KappaZT(i,j,k) = 0. _d 0           KappaRT(i,j,k) = 0. _d 0
197             KappaRS(i,j,k) = 0. _d 0
198          ENDDO          ENDDO
199          rhoKM1 (i,j) = 0. _d 0          rhoKM1 (i,j) = 0. _d 0
200          rhok   (i,j) = 0. _d 0          rhok   (i,j) = 0. _d 0
# Line 201  C     uninitialised but inert locations. Line 206  C     uninitialised but inert locations.
206         ENDDO         ENDDO
207        ENDDO        ENDDO
208    
209    
210        DO bj=myByLo(myThid),myByHi(myThid)        DO bj=myByLo(myThid),myByHi(myThid)
211         DO bi=myBxLo(myThid),myBxHi(myThid)         DO bi=myBxLo(myThid),myBxHi(myThid)
212    
# Line 231  C--     Set up work arrays that need val Line 237  C--     Set up work arrays that need val
237          jMin = 1-OLy+1          jMin = 1-OLy+1
238          jMax = sNy+OLy          jMax = sNy+OLy
239    
240    
241          K = 1          K = 1
242          BOTTOM_LAYER = K .EQ. Nz          BOTTOM_LAYER = K .EQ. Nr
243    
244    #ifdef DO_PIPELINED_CORRECTION_STEP
245  C--     Calculate gradient of surface pressure  C--     Calculate gradient of surface pressure
246          CALL CALC_GRAD_ETA_SURF(          CALL CALC_GRAD_ETA_SURF(
247       I       bi,bj,iMin,iMax,jMin,jMax,       I       bi,bj,iMin,iMax,jMin,jMax,
# Line 243  C--     Update fields in top level accor Line 251  C--     Update fields in top level accor
251          CALL CORRECTION_STEP(          CALL CORRECTION_STEP(
252       I       bi,bj,iMin,iMax,jMin,jMax,K,       I       bi,bj,iMin,iMax,jMin,jMax,K,
253       I       etaSurfX,etaSurfY,myTime,myThid)       I       etaSurfX,etaSurfY,myTime,myThid)
254            IF (openBoundaries) CALL APPLY_OBCS1( bi, bj, K, myThid )
255          IF ( .NOT. BOTTOM_LAYER ) THEN          IF ( .NOT. BOTTOM_LAYER ) THEN
256  C--      Update fields in layer below according to tendency terms  C--      Update fields in layer below according to tendency terms
257           CALL CORRECTION_STEP(           CALL CORRECTION_STEP(
258       I        bi,bj,iMin,iMax,jMin,jMax,K+1,       I        bi,bj,iMin,iMax,jMin,jMax,K+1,
259       I        etaSurfX,etaSurfY,myTime,myThid)       I        etaSurfX,etaSurfY,myTime,myThid)
260             IF (openBoundaries) CALL APPLY_OBCS1( bi, bj, K+1, myThid )
261          ENDIF          ENDIF
262    #endif
263  C--     Density of 1st level (below W(1)) reference to level 1  C--     Density of 1st level (below W(1)) reference to level 1
264    #ifdef  INCLUDE_FIND_RHO_CALL
265          CALL FIND_RHO(          CALL FIND_RHO(
266       I     bi, bj, iMin, iMax, jMin, jMax, K, K, eosType,       I     bi, bj, iMin, iMax, jMin, jMax, K, K, eosType,
267       O     rhoKm1,       O     rhoKm1,
268       I     myThid )       I     myThid )
269    #endif
270    
271          IF ( .NOT. BOTTOM_LAYER ) THEN          IF ( .NOT. BOTTOM_LAYER ) THEN
272  C--      Check static stability with layer below  C--      Check static stability with layer below
273  C--      and mix as needed.  C--      and mix as needed.
274    #ifdef  INCLUDE_FIND_RHO_CALL
275           CALL FIND_RHO(           CALL FIND_RHO(
276       I      bi, bj, iMin, iMax, jMin, jMax, K+1, K, eosType,       I      bi, bj, iMin, iMax, jMin, jMax, K+1, K, eosType,
277       O      rhoKp1,       O      rhoKp1,
278       I      myThid )       I      myThid )
279    #endif
280    #ifdef  INCLUDE_CONVECT_CALL
281           CALL CONVECT(           CALL CONVECT(
282       I       bi,bj,iMin,iMax,jMin,jMax,K+1,rhoKm1,rhoKp1,       I       bi,bj,iMin,iMax,jMin,jMax,K+1,rhoKm1,rhoKp1,
283       I       myTime,myIter,myThid)       I       myTime,myIter,myThid)
284    #endif
285  C--      Recompute density after mixing  C--      Recompute density after mixing
286    #ifdef  INCLUDE_FIND_RHO_CALL
287           CALL FIND_RHO(           CALL FIND_RHO(
288       I      bi, bj, iMin, iMax, jMin, jMax, K, K, eosType,       I      bi, bj, iMin, iMax, jMin, jMax, K, K, eosType,
289       O      rhoKm1,       O      rhoKm1,
290       I      myThid )       I      myThid )
291    #endif
292          ENDIF          ENDIF
293  C--     Calculate buoyancy  C--     Calculate buoyancy
294          CALL CALC_BUOY(          CALL CALC_BUOYANCY(
295       I      bi,bj,iMin,iMax,jMin,jMax,K,rhoKm1,       I      bi,bj,iMin,iMax,jMin,jMax,K,rhoKm1,
296       O      buoyKm1,       O      buoyKm1,
297       I      myThid )       I      myThid )
298  C--     Integrate hydrostatic balance for pH with BC of pH(z=0)=0  C--     Integrate hydrostatic balance for phiHyd with BC of
299    C--     phiHyd(z=0)=0
300          CALL CALC_PHI_HYD(          CALL CALC_PHI_HYD(
301       I      bi,bj,iMin,iMax,jMin,jMax,K,buoyKm1,buoyKm1,       I      bi,bj,iMin,iMax,jMin,jMax,K,buoyKm1,buoyKm1,
302       U      phiHyd,       U      phiHyd,
303       I      myThid )       I      myThid )
304    
305          DO K=2,Nz          DO K=2,Nr
306           BOTTOM_LAYER = K .EQ. Nz           BOTTOM_LAYER = K .EQ. Nr
307    #ifdef DO_PIPELINED_CORRECTION_STEP
308           IF ( .NOT. BOTTOM_LAYER ) THEN           IF ( .NOT. BOTTOM_LAYER ) THEN
309  C--       Update fields in layer below according to tendency terms  C--       Update fields in layer below according to tendency terms
310            CALL CORRECTION_STEP(            CALL CORRECTION_STEP(
311       I         bi,bj,iMin,iMax,jMin,jMax,K+1,       I         bi,bj,iMin,iMax,jMin,jMax,K+1,
312       I         etaSurfX,etaSurfY,myTime,myThid)       I         etaSurfX,etaSurfY,myTime,myThid)
313              IF (openBoundaries) CALL APPLY_OBCS1( bi, bj, K+1, myThid )
314           ENDIF           ENDIF
315    #endif
316  C--      Density of K level (below W(K)) reference to K level  C--      Density of K level (below W(K)) reference to K level
317    #ifdef  INCLUDE_FIND_RHO_CALL
318           CALL FIND_RHO(           CALL FIND_RHO(
319       I      bi, bj, iMin, iMax, jMin, jMax,  K, K, eosType,       I      bi, bj, iMin, iMax, jMin, jMax,  K, K, eosType,
320       O      rhoK,       O      rhoK,
321       I      myThid )       I      myThid )
322    #endif
323           IF ( .NOT. BOTTOM_LAYER ) THEN           IF ( .NOT. BOTTOM_LAYER ) THEN
324  C--       Check static stability with layer below and mix as needed.  C--       Check static stability with layer below and mix as needed.
325  C--       Density of K+1 level (below W(K+1)) reference to K level.  C--       Density of K+1 level (below W(K+1)) reference to K level.
326    #ifdef  INCLUDE_FIND_RHO_CALL
327            CALL FIND_RHO(            CALL FIND_RHO(
328       I       bi, bj, iMin, iMax, jMin, jMax,  K+1, K, eosType,       I       bi, bj, iMin, iMax, jMin, jMax,  K+1, K, eosType,
329       O       rhoKp1,       O       rhoKp1,
330       I       myThid )       I       myThid )
331    #endif
332    #ifdef  INCLUDE_CONVECT_CALL
333            CALL CONVECT(            CALL CONVECT(
334       I        bi,bj,iMin,iMax,jMin,jMax,K+1,rhoK,rhoKp1,       I        bi,bj,iMin,iMax,jMin,jMax,K+1,rhoK,rhoKp1,
335       I        myTime,myIter,myThid)       I        myTime,myIter,myThid)
336    #endif
337  C--       Recompute density after mixing  C--       Recompute density after mixing
338    #ifdef  INCLUDE_FIND_RHO_CALL
339            CALL FIND_RHO(            CALL FIND_RHO(
340       I       bi, bj, iMin, iMax, jMin, jMax, K, K, eosType,       I       bi, bj, iMin, iMax, jMin, jMax, K, K, eosType,
341       O       rhoK,       O       rhoK,
342       I       myThid )       I       myThid )
343    #endif
344           ENDIF           ENDIF
345  C--      Calculate buoyancy  C--      Calculate buoyancy
346           CALL CALC_BUOY(           CALL CALC_BUOYANCY(
347       I       bi,bj,iMin,iMax,jMin,jMax,K,rhoK,       I       bi,bj,iMin,iMax,jMin,jMax,K,rhoK,
348       O       buoyK,       O       buoyK,
349       I       myThid )       I       myThid )
350  C--      Integrate hydrostatic balance for pH with BC of pH(z=0)=0  C--      Integrate hydrostatic balance for phiHyd with BC of
351    C--      phiHyd(z=0)=0
352           CALL CALC_PHI_HYD(           CALL CALC_PHI_HYD(
353       I        bi,bj,iMin,iMax,jMin,jMax,K,buoyKm1,buoyK,       I        bi,bj,iMin,iMax,jMin,jMax,K,buoyKm1,buoyK,
354       U        phiHyd,       U        phiHyd,
355       I        myThid )       I        myThid )
356  C--      Calculate iso-neutral slopes for the GM/Redi parameterisation  C--      Calculate iso-neutral slopes for the GM/Redi parameterisation
357    #ifdef  INCLUDE_FIND_RHO_CALL
358           CALL FIND_RHO(           CALL FIND_RHO(
359       I        bi, bj, iMin, iMax, jMin, jMax, K-1, K, eosType,       I        bi, bj, iMin, iMax, jMin, jMax, K-1, K, eosType,
360       O        rhoTmp,       O        rhoTmp,
361       I        myThid )       I        myThid )
362    #endif
363    #ifdef  INCLUDE_CALC_ISOSLOPES_CALL
364           CALL CALC_ISOSLOPES(           CALL CALC_ISOSLOPES(
365       I        bi, bj, iMin, iMax, jMin, jMax, K,       I        bi, bj, iMin, iMax, jMin, jMax, K,
366       I        rhoKm1, rhoK, rhotmp,       I        rhoKm1, rhoK, rhotmp,
367       O        K13, K23, K33, KapGM,       O        K13, K23, K33, KapGM,
368       I        myThid )       I        myThid )
369    #endif
370           DO J=jMin,jMax           DO J=jMin,jMax
371            DO I=iMin,iMax            DO I=iMin,iMax
372    #ifdef  INCLUDE_FIND_RHO_CALL
373             rhoKm1 (I,J) = rhoK(I,J)             rhoKm1 (I,J) = rhoK(I,J)
374    #endif
375             buoyKm1(I,J) = buoyK(I,J)             buoyKm1(I,J) = buoyK(I,J)
376            ENDDO            ENDDO
377           ENDDO           ENDDO
378          ENDDO ! K          ENDDO ! K
379    
380          DO K = Nz, 1, -1          DO K = Nr, 1, -1
381    
382           kM1  =max(1,k-1)   ! Points to level above k (=k-1)           kM1  =max(1,k-1)   ! Points to level above k (=k-1)
383           kUp  =1+MOD(k+1,2) ! Cycles through 1,2 to point to layer above           kUp  =1+MOD(k+1,2) ! Cycles through 1,2 to point to layer above
# Line 354  C--      Get temporary terms used by ten Line 392  C--      Get temporary terms used by ten
392       I        bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,       I        bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,
393       O        xA,yA,uTrans,vTrans,rTrans,rVel,maskC,maskUp,       O        xA,yA,uTrans,vTrans,rTrans,rVel,maskC,maskUp,
394       I        myThid)       I        myThid)
395    #ifdef  INCLUDE_CALC_DIFFUSIVITY_CALL
396  C--      Calculate the total vertical diffusivity  C--      Calculate the total vertical diffusivity
397           CALL CALC_DIFFUSIVITY(           CALL CALC_DIFFUSIVITY(
398       I        bi,bj,iMin,iMax,jMin,jMax,K,       I        bi,bj,iMin,iMax,jMin,jMax,K,
399       I        maskC,maskUp,KapGM,K33,       I        maskC,maskUp,KapGM,K33,
400       O        KappaZT,KappaZS,       O        KappaRT,KappaRS,
401       I        myThid)       I        myThid)
402    #endif
403  C--      Calculate accelerations in the momentum equations  C--      Calculate accelerations in the momentum equations
404           IF ( momStepping ) THEN           IF ( momStepping ) THEN
405            CALL CALC_MOM_RHS(            CALL CALC_MOM_RHS(
# Line 368  C--      Calculate accelerations in the Line 408  C--      Calculate accelerations in the
408       I         phiHyd,       I         phiHyd,
409       U         aTerm,xTerm,cTerm,mTerm,pTerm,       U         aTerm,xTerm,cTerm,mTerm,pTerm,
410       U         fZon, fMer, fVerU, fVerV,       U         fZon, fMer, fVerU, fVerV,
411       I         myThid)       I         myTime, myThid)
412           ENDIF           ENDIF
413  C--      Calculate active tracer tendencies  C--      Calculate active tracer tendencies
414           IF ( tempStepping ) THEN           IF ( tempStepping ) THEN
# Line 377  C--      Calculate active tracer tendenc Line 417  C--      Calculate active tracer tendenc
417       I         xA,yA,uTrans,vTrans,rTrans,maskUp,maskC,       I         xA,yA,uTrans,vTrans,rTrans,maskUp,maskC,
418       I         K13,K23,KappaRT,KapGM,       I         K13,K23,KappaRT,KapGM,
419       U         aTerm,xTerm,fZon,fMer,fVerT,       U         aTerm,xTerm,fZon,fMer,fVerT,
420       I         myThid)       I         myTime, myThid)
421           ENDIF           ENDIF
422           IF ( saltStepping ) THEN           IF ( saltStepping ) THEN
423            CALL CALC_GS(            CALL CALC_GS(
# Line 385  C--      Calculate active tracer tendenc Line 425  C--      Calculate active tracer tendenc
425       I         xA,yA,uTrans,vTrans,rTrans,maskUp,maskC,       I         xA,yA,uTrans,vTrans,rTrans,maskUp,maskC,
426       I         K13,K23,KappaRS,KapGM,       I         K13,K23,KappaRS,KapGM,
427       U         aTerm,xTerm,fZon,fMer,fVerS,       U         aTerm,xTerm,fZon,fMer,fVerS,
428       I         myThid)       I         myTime, myThid)
429           ENDIF           ENDIF
430  C--      Prediction step (step forward all model variables)  C--      Prediction step (step forward all model variables)
431           CALL TIMESTEP(           CALL TIMESTEP(
432       I       bi,bj,iMin,iMax,jMin,jMax,K,       I       bi,bj,iMin,iMax,jMin,jMax,K,
433       I       myThid)       I       myThid)
434             IF (openBoundaries) CALL APPLY_OBCS2( bi, bj, K, myThid )
435  C--      Diagnose barotropic divergence of predicted fields  C--      Diagnose barotropic divergence of predicted fields
436           CALL CALC_DIV_G(           CALL CALC_DIV_GHAT(
437       I       bi,bj,iMin,iMax,jMin,jMax,K,       I       bi,bj,iMin,iMax,jMin,jMax,K,
438       I       xA,yA,       I       xA,yA,
439       I       myThid)       I       myThid)
440    
441  C--      Cumulative diagnostic calculations (ie. time-averaging)  C--      Cumulative diagnostic calculations (ie. time-averaging)
442  #ifdef ALLOW_DIAGNOSTICS  #ifdef INCLUDE_DIAGNOSTICS_INTERFACE_CODE
443           IF (taveFreq.GT.0.) THEN           IF (taveFreq.GT.0.) THEN
444            CALL DO_TIME_AVERAGES(            CALL DO_TIME_AVERAGES(
445       I                           myTime, myIter, bi, bj, K, kUp, kDown,       I                           myTime, myIter, bi, bj, K, kUp, kDown,
# Line 412  C--      Cumulative diagnostic calculati Line 453  C--      Cumulative diagnostic calculati
453  C--     Implicit diffusion  C--     Implicit diffusion
454          IF (implicitDiffusion) THEN          IF (implicitDiffusion) THEN
455           CALL IMPLDIFF( bi, bj, iMin, iMax, jMin, jMax,           CALL IMPLDIFF( bi, bj, iMin, iMax, jMin, jMax,
456       I                  KappaZT,KappaZS,       I                  KappaRT,KappaRS,
457       I                  myThid )       I                  myThid )
458          ENDIF          ENDIF
459    
# Line 445  C     write(0,*) 'dynamics: gS ',minval( Line 486  C     write(0,*) 'dynamics: gS ',minval(
486  C    &                           maxval(gS(1:sNx,1:sNy,:,:,:))  C    &                           maxval(gS(1:sNx,1:sNy,:,:,:))
487  C     write(0,*) 'dynamics: S  ',minval(salt(1:sNx,1:sNy,:,:,:)),  C     write(0,*) 'dynamics: S  ',minval(salt(1:sNx,1:sNy,:,:,:)),
488  C    &                           maxval(salt(1:sNx,1:sNy,:,:,:))  C    &                           maxval(salt(1:sNx,1:sNy,:,:,:))
489  C     write(0,*) 'dynamics: pH ',minval(pH/(Gravity*Rhonil),mask=ph.NE.0.),  C     write(0,*) 'dynamics: phiHyd ',minval(phiHyd/(Gravity*Rhonil),mask=phiHyd.NE.0.),
490  C    &                           maxval(pH/(Gravity*Rhonil))  C    &                           maxval(phiHyd/(Gravity*Rhonil))
491    C     CALL PLOT_FIELD_XYZRL( gU, ' GU exiting dyanmics ' ,
492    C    &Nr, 1, myThid )
493    C     CALL PLOT_FIELD_XYZRL( gV, ' GV exiting dyanmics ' ,
494    C    &Nr, 1, myThid )
495    C     CALL PLOT_FIELD_XYZRL( gS, ' GS exiting dyanmics ' ,
496    C    &Nr, 1, myThid )
497    C     CALL PLOT_FIELD_XYZRL( gT, ' GT exiting dyanmics ' ,
498    C    &Nr, 1, myThid )
499    C     CALL PLOT_FIELD_XYZRL( phiHyd, ' phiHyd exiting dyanmics ' ,
500    C    &Nr, 1, myThid )
501    
502    
503        RETURN        RETURN
504        END        END

Legend:
Removed from v.1.30  
changed lines
  Added in v.1.39

  ViewVC Help
Powered by ViewVC 1.1.22