/[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.54.2.4 by adcroft, Tue Jan 9 15:44:59 2001 UTC revision 1.59 by cnh, Sun Feb 4 14:38:47 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 58  C                              o rVel: Line 59  C                              o rVel:
59  C                                        lower cell faces.  C                                        lower cell faces.
60  C     maskC,maskUp             o maskC: land/water mask for tracer cells  C     maskC,maskUp             o maskC: land/water mask for tracer cells
61  C                              o maskUp: land/water mask for W points  C                              o maskUp: land/water mask for W points
62  C     aTerm, xTerm, cTerm    - Work arrays for holding separate terms in  C     fVer[STUV]               o fVer: Vertical flux term - note fVer
 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                      pressure anomaly
# Line 99  C                      index into fVerTe Line 88  C                      index into fVerTe
88        _RL rVel    (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)        _RL rVel    (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)
89        _RS maskC   (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RS maskC   (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
90        _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)  
91        _RL fVerT   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)        _RL fVerT   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)
92        _RL fVerS   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)        _RL fVerS   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)
93        _RL fVerU   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)        _RL fVerU   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)
94        _RL fVerV   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)        _RL fVerV   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)
95        _RL phiHyd  (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr)        _RL phiHyd  (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr)
96        _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)  
97        _RL rhok    (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL rhok    (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
       _RL buoyKM1 (1-OLx:sNx+OLx,1-OLy:sNy+OLy)  
       _RL buoyK   (1-OLx:sNx+OLx,1-OLy:sNy+OLy)  
       _RL rhotmp  (1-OLx:sNx+OLx,1-OLy:sNy+OLy)  
98        _RL KappaRT (1-Olx:sNx+Olx,1-Oly:sNy+Oly,Nr)        _RL KappaRT (1-Olx:sNx+Olx,1-Oly:sNy+Oly,Nr)
99        _RL KappaRS (1-Olx:sNx+Olx,1-Oly:sNy+Oly,Nr)        _RL KappaRS (1-Olx:sNx+Olx,1-Oly:sNy+Oly,Nr)
100        _RL KappaRU (1-Olx:sNx+Olx,1-Oly:sNy+Oly,Nr)        _RL KappaRU (1-Olx:sNx+Olx,1-Oly:sNy+Oly,Nr)
# Line 207  C     uninitialised but inert locations. Line 185  C     uninitialised but inert locations.
185          yA(i,j)      = 0. _d 0          yA(i,j)      = 0. _d 0
186          uTrans(i,j)  = 0. _d 0          uTrans(i,j)  = 0. _d 0
187          vTrans(i,j)  = 0. _d 0          vTrans(i,j)  = 0. _d 0
         aTerm(i,j)   = 0. _d 0  
         xTerm(i,j)   = 0. _d 0  
         cTerm(i,j)   = 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  
188          DO k=1,Nr          DO k=1,Nr
189           phiHyd (i,j,k)  = 0. _d 0           phiHyd(i,j,k)  = 0. _d 0
190           KappaRU(i,j,k) = 0. _d 0           KappaRU(i,j,k) = 0. _d 0
191           KappaRV(i,j,k) = 0. _d 0           KappaRV(i,j,k) = 0. _d 0
192           sigmaX(i,j,k) = 0. _d 0           sigmaX(i,j,k) = 0. _d 0
# Line 224  C     uninitialised but inert locations. Line 195  C     uninitialised but inert locations.
195          ENDDO          ENDDO
196          rhoKM1 (i,j) = 0. _d 0          rhoKM1 (i,j) = 0. _d 0
197          rhok   (i,j) = 0. _d 0          rhok   (i,j) = 0. _d 0
         rhoKP1 (i,j) = 0. _d 0  
         rhoTMP (i,j) = 0. _d 0  
         buoyKM1(i,j) = 0. _d 0  
         buoyK  (i,j) = 0. _d 0  
198          maskC  (i,j) = 0. _d 0          maskC  (i,j) = 0. _d 0
199         ENDDO         ENDDO
200        ENDDO        ENDDO
# Line 281  C--     Set up work arrays that need val Line 248  C--     Set up work arrays that need val
248            fVerU (i,j,2) = 0. _d 0            fVerU (i,j,2) = 0. _d 0
249            fVerV (i,j,1) = 0. _d 0            fVerV (i,j,1) = 0. _d 0
250            fVerV (i,j,2) = 0. _d 0            fVerV (i,j,2) = 0. _d 0
           phiHyd(i,j,1) = 0. _d 0  
251           ENDDO           ENDDO
252          ENDDO          ENDDO
253    
# Line 312  C? Do we still need this? Line 278  C? Do we still need this?
278           kkey = (ikey-1)*(Nr-2+1) + (k-2) + 1           kkey = (ikey-1)*(Nr-2+1) + (k-2) + 1
279  #endif /* ALLOW_AUTODIFF_TAMC */  #endif /* ALLOW_AUTODIFF_TAMC */
280    
 #ifdef ALLOW_OBCS  
 C--       Calculate future values on open boundaries  
           IF (openBoundaries) THEN  
 Caja        CALL CYCLE_OBCS( k, bi, bj, myThid )  
 c new args! CALL SET_OBCS( k, bi, bj, myTime, myThid )  
 c +deltaT?  
           ENDIF  
 #endif  
   
281  C--       Integrate continuity vertically for vertical velocity  C--       Integrate continuity vertically for vertical velocity
282            CALL INTEGRATE_FOR_W(            CALL INTEGRATE_FOR_W(
283       I                         bi, bj, k, uVel, vVel,       I                         bi, bj, k, uVel, vVel,
284       O                         wVel,       O                         wVel,
285       I                         myThid )       I                         myThid )
286  #ifdef ALLOW_OBCS  
287            IF (openBoundaries) THEN  #ifdef    ALLOW_OBCS
288  c new subr  CALL OBCS_APPLY_W( bi, bj, k, wVel, myThid )  #ifdef    ALLOW_NONHYDROSTATIC
289    C--       Calculate future values on open boundaries
290              IF (useOBCS.AND.nonHydrostatic) THEN
291                CALL OBCS_APPLY_W( bi, bj, k, wVel, myThid )
292            ENDIF            ENDIF
293  #endif  #endif    /* ALLOW_NONHYDROSTATIC */
294    #endif    /* ALLOW_OBCS */
295    
296  C--       Calculate gradients of potential density for isoneutral  C--       Calculate gradients of potential density for isoneutral
297  C         slope terms (e.g. GM/Redi tensor or IVDC diffusivity)  C         slope terms (e.g. GM/Redi tensor or IVDC diffusivity)
298            IF ( k.GT.1 .AND. (useGMRedi.OR.ivdc_kappa.NE.0.) ) THEN  c         IF ( k.GT.1 .AND. (useGMRedi.OR.ivdc_kappa.NE.0.) ) THEN
299              IF ( useGMRedi .OR. (k.GT.1 .AND. ivdc_kappa.NE.0.) ) THEN
300              CALL FIND_RHO(              CALL FIND_RHO(
301       I        bi, bj, iMin, iMax, jMin, jMax, k, k, eosType,       I        bi, bj, iMin, iMax, jMin, jMax, k, k, eosType,
302         I        theta, salt,
303       O        rhoK,       O        rhoK,
304       I        myThid )       I        myThid )
305              CALL FIND_RHO(              IF (k.GT.1) CALL FIND_RHO(
306       I        bi, bj, iMin, iMax, jMin, jMax, k-1, k, eosType,       I        bi, bj, iMin, iMax, jMin, jMax, k-1, k, eosType,
307         I        theta, salt,
308       O        rhoKm1,       O        rhoKm1,
309       I        myThid )       I        myThid )
310              CALL GRAD_SIGMA(              CALL GRAD_SIGMA(
# Line 351  C         slope terms (e.g. GM/Redi tens Line 315  C         slope terms (e.g. GM/Redi tens
315            ENDIF            ENDIF
316    
317  C--       Implicit Vertical Diffusion for Convection  C--       Implicit Vertical Diffusion for Convection
318    c ==> should use sigmaR !!!
319            IF (k.GT.1 .AND. ivdc_kappa.NE.0.) THEN            IF (k.GT.1 .AND. ivdc_kappa.NE.0.) THEN
320              CALL CALC_IVDC(              CALL CALC_IVDC(
321       I        bi, bj, iMin, iMax, jMin, jMax, k,       I        bi, bj, iMin, iMax, jMin, jMax, k,
322       I        rhoKm1, rhoK,       I        rhoKm1, rhoK,
 c should use sigmaR !!!  
323       U        ConvectCount, KappaRT, KappaRS,       U        ConvectCount, KappaRT, KappaRS,
324       I        myTime, myIter, myThid)       I        myTime, myIter, myThid)
325            END IF            END IF
# Line 363  c should use sigmaR !!! Line 327  c should use sigmaR !!!
327  C--     end of diagnostic k loop (Nr:1)  C--     end of diagnostic k loop (Nr:1)
328          ENDDO          ENDDO
329    
330    #ifdef  ALLOW_OBCS
331    C--     Calculate future values on open boundaries
332            IF (useOBCS) THEN
333              CALL OBCS_CALC( bi, bj, myTime+deltaT,
334         I            uVel, vVel, wVel, theta, salt,
335         I            myThid )
336            ENDIF
337    #endif  /* ALLOW_OBCS */
338    
339    C--     Determines forcing terms based on external fields
340    C       relaxation terms, etc.
341            CALL EXTERNAL_FORCING_SURF(
342         I             bi, bj, iMin, iMax, jMin, jMax,
343         I             myThid )
344    
345  #ifdef  ALLOW_GMREDI  #ifdef  ALLOW_GMREDI
346  C--     Calculate iso-neutral slopes for the GM/Redi parameterisation  C--     Calculate iso-neutral slopes for the GM/Redi parameterisation
347          IF (useGMRedi) THEN          IF (useGMRedi) THEN
# Line 372  C--     Calculate iso-neutral slopes for Line 351  C--     Calculate iso-neutral slopes for
351       I             sigmaX, sigmaY, sigmaR,       I             sigmaX, sigmaY, sigmaR,
352       I             myThid )       I             myThid )
353            ENDDO            ENDDO
354    #ifdef ALLOW_AUTODIFF_TAMC
355            ELSE
356              DO k=1, Nr
357                CALL GMREDI_CALC_TENSOR_DUMMY(
358         I             bi, bj, iMin, iMax, jMin, jMax, k,
359         I             sigmaX, sigmaY, sigmaR,
360         I             myThid )
361              ENDDO
362    #endif /* ALLOW_AUTODIFF_TAMC */
363          ENDIF          ENDIF
364  #endif  /* ALLOW_GMREDI */  #endif  /* ALLOW_GMREDI */
365    
# Line 383  C--     Compute KPP mixing coefficients Line 371  C--     Compute KPP mixing coefficients
371          ENDIF          ENDIF
372  #endif  /* ALLOW_KPP */  #endif  /* ALLOW_KPP */
373    
 C--     Determines forcing terms based on external fields  
 C       relaxation terms, etc.  
         CALL EXTERNAL_FORCING_SURF(  
      I             bi, bj, iMin, iMax, jMin, jMax,  
      I             myThid )  
   
374  #ifdef ALLOW_AUTODIFF_TAMC  #ifdef ALLOW_AUTODIFF_TAMC
375  CADJ STORE KappaRT(:,:,:)     = comlev1_bibj, key = ikey, byte = isbyte  CADJ STORE KappaRT(:,:,:)     = comlev1_bibj, key = ikey, byte = isbyte
376  CADJ STORE KappaRS(:,:,:)     = comlev1_bibj, key = ikey, byte = isbyte  CADJ STORE KappaRS(:,:,:)     = comlev1_bibj, key = ikey, byte = isbyte
# Line 398  CADJ STORE uvel (:,:,:,bi,bj) = comlev1_ Line 380  CADJ STORE uvel (:,:,:,bi,bj) = comlev1_
380  CADJ STORE vvel (:,:,:,bi,bj) = comlev1_bibj, key = ikey, byte = isbyte  CADJ STORE vvel (:,:,:,bi,bj) = comlev1_bibj, key = ikey, byte = isbyte
381  #endif /* ALLOW_AUTODIFF_TAMC */  #endif /* ALLOW_AUTODIFF_TAMC */
382    
383    #ifdef ALLOW_AIM
384    C       AIM - atmospheric intermediate model, physics package code.
385    C note(jmc) : phiHyd=0 at this point but is not really used in Molteni Physics
386            IF ( useAIM ) THEN
387             CALL TIMER_START('AIM_DO_ATMOS_PHYS      [DYNAMICS]', myThid)
388             CALL AIM_DO_ATMOS_PHYSICS( phiHyd, myTime, myThid )
389             CALL TIMER_STOP ('AIM_DO_ATMOS_PHYS      [DYNAMICS]', myThid)
390            ENDIF
391    #endif /* ALLOW_AIM */
392    
393    
394  C--     Start of thermodynamics loop  C--     Start of thermodynamics loop
# Line 447  C        and step forward storing result Line 438  C        and step forward storing result
438       I         bi,bj,iMin,iMax,jMin,jMax, k,km1,kup,kDown,       I         bi,bj,iMin,iMax,jMin,jMax, k,km1,kup,kDown,
439       I         xA,yA,uTrans,vTrans,rTrans,maskUp,maskC,       I         xA,yA,uTrans,vTrans,rTrans,maskUp,maskC,
440       I         KappaRT,       I         KappaRT,
441       U         aTerm,xTerm,fZon,fMer,fVerT,       U         fVerT,
442       I         myTime, myThid)       I         myTime, myThid)
443             CALL TIMESTEP_TRACER(             CALL TIMESTEP_TRACER(
444       I         bi,bj,iMin,iMax,jMin,jMax,k,       I         bi,bj,iMin,iMax,jMin,jMax,k,
# Line 460  C        and step forward storing result Line 451  C        and step forward storing result
451       I         bi,bj,iMin,iMax,jMin,jMax, k,km1,kup,kDown,       I         bi,bj,iMin,iMax,jMin,jMax, k,km1,kup,kDown,
452       I         xA,yA,uTrans,vTrans,rTrans,maskUp,maskC,       I         xA,yA,uTrans,vTrans,rTrans,maskUp,maskC,
453       I         KappaRS,       I         KappaRS,
454       U         aTerm,xTerm,fZon,fMer,fVerS,       U         fVerS,
455       I         myTime, myThid)       I         myTime, myThid)
456             CALL TIMESTEP_TRACER(             CALL TIMESTEP_TRACER(
457       I         bi,bj,iMin,iMax,jMin,jMax,k,       I         bi,bj,iMin,iMax,jMin,jMax,k,
# Line 468  C        and step forward storing result Line 459  C        and step forward storing result
459       U         gSnm1,       U         gSnm1,
460       I         myIter, myThid)       I         myIter, myThid)
461           ENDIF           ENDIF
462  #ifdef ALLOW_OBCS  
463    #ifdef   ALLOW_OBCS
464  C--      Apply open boundary conditions  C--      Apply open boundary conditions
465           IF (openBoundaries) THEN           IF (useOBCS) THEN
466  #ifdef ALLOW_AUTODIFF_TAMC             CALL OBCS_APPLY_TS( bi, bj, k, gTnm1, gSnm1, myThid )
 CADJ STORE gwnm1(:,:,k,bi,bj) = comlev1_bibj_k  
 CADJ &   , key = kkey, byte = isbyte  
 #endif /* ALLOW_AUTODIFF_TAMC */  
 c new subr  CALL OBCS_APPLY_TS( bi, bj, k, myThid )  
467           END IF           END IF
468  #endif  #endif   /* ALLOW_OBCS */
469    
470  C--      Freeze water  C--      Freeze water
471           IF (allowFreezing) THEN           IF (allowFreezing) THEN
472  #ifdef ALLOW_AUTODIFF_TAMC  #ifdef ALLOW_AUTODIFF_TAMC
# Line 522  C--     Implicit diffusion Line 511  C--     Implicit diffusion
511       I         myThid )       I         myThid )
512           ENDIF           ENDIF
513    
514    #ifdef   ALLOW_OBCS
515    C--      Apply open boundary conditions
516             IF (useOBCS) THEN
517               DO K=1,Nr
518                 CALL OBCS_APPLY_TS( bi, bj, k, gTnm1, gSnm1, myThid )
519               ENDDO
520             END IF
521    #endif   /* ALLOW_OBCS */
522    
523  C--     End If implicitDiffusion  C--     End If implicitDiffusion
524          ENDIF          ENDIF
525    
# Line 543  C--       kDown  Cycles through 2,1 to p Line 541  C--       kDown  Cycles through 2,1 to p
541            jMin = 1-OLy+2            jMin = 1-OLy+2
542            jMax = sNy+OLy-1            jMax = sNy+OLy-1
543    
 C--      Calculate buoyancy  
          CALL FIND_RHO(  
      I        bi, bj, iMin, iMax, jMin, jMax, km1, km1, eosType,  
      O        rhoKm1,  
      I        myThid )  
          CALL CALC_BUOYANCY(  
      I        bi,bj,iMin,iMax,jMin,jMax,k,rhoKm1,  
      O        buoyKm1,  
      I        myThid )  
          CALL FIND_RHO(  
      I        bi, bj, iMin, iMax, jMin, jMax, k, k, eosType,  
      O        rhoK,  
      I        myThid )  
          CALL CALC_BUOYANCY(  
      I        bi,bj,iMin,iMax,jMin,jMax,k,rhoK,  
      O        buoyK,  
      I        myThid )  
   
544  C--      Integrate hydrostatic balance for phiHyd with BC of  C--      Integrate hydrostatic balance for phiHyd with BC of
545  C--      phiHyd(z=0)=0  C        phiHyd(z=0)=0
546           CALL CALC_PHI_HYD(  C        distinguishe between Stagger and Non Stagger time stepping
547       I        bi,bj,iMin,iMax,jMin,jMax,k,buoyKm1,buoyK,           IF (staggerTimeStep) THEN
548               CALL CALC_PHI_HYD(
549         I        bi,bj,iMin,iMax,jMin,jMax,k,
550         I        gTnm1, gSnm1,
551         U        phiHyd,
552         I        myThid )
553             ELSE
554               CALL CALC_PHI_HYD(
555         I        bi,bj,iMin,iMax,jMin,jMax,k,
556         I        theta, salt,
557       U        phiHyd,       U        phiHyd,
558       I        myThid )       I        myThid )
559             ENDIF
560    
561  C--      Calculate accelerations in the momentum equations (gU, gV, ...)  C--      Calculate accelerations in the momentum equations (gU, gV, ...)
562  C        and step forward storing the result in gUnm1, gVnm1, etc...  C        and step forward storing the result in gUnm1, gVnm1, etc...
# Line 577  C        and step forward storing the re Line 567  C        and step forward storing the re
567       U         fVerU, fVerV,       U         fVerU, fVerV,
568       I         myTime, myThid)       I         myTime, myThid)
569             CALL TIMESTEP(             CALL TIMESTEP(
570       I         bi,bj,iMin,iMax,jMin,jMax,k,       I         bi,bj,iMin,iMax,jMin,jMax,k,phiHyd,
571       I         myIter, myThid)       I         myIter, myThid)
572    
573    #ifdef   ALLOW_OBCS
574    C--      Apply open boundary conditions
575             IF (useOBCS) THEN
576               CALL OBCS_APPLY_UV( bi, bj, k, gUnm1, gVnm1, myThid )
577             END IF
578    #endif   /* ALLOW_OBCS */
579    
580  #ifdef   ALLOW_AUTODIFF_TAMC  #ifdef   ALLOW_AUTODIFF_TAMC
581  #ifdef   INCLUDE_CD_CODE  #ifdef   INCLUDE_CD_CODE
582           ELSE           ELSE
# Line 617  C--     Implicit viscosity Line 615  C--     Implicit viscosity
615       U         gVNm1,       U         gVNm1,
616       I         myThid )       I         myThid )
617    
618    #ifdef   ALLOW_OBCS
619    C--      Apply open boundary conditions
620             IF (useOBCS) THEN
621               DO K=1,Nr
622                 CALL OBCS_APPLY_UV( bi, bj, k, gUnm1, gVnm1, myThid )
623               ENDDO
624             END IF
625    #endif   /* ALLOW_OBCS */
626    
627  #ifdef    INCLUDE_CD_CODE  #ifdef    INCLUDE_CD_CODE
628  #ifdef    ALLOW_AUTODIFF_TAMC  #ifdef    ALLOW_AUTODIFF_TAMC
629            idkey = iikey + 5            idkey = iikey + 5
# Line 643  C--     End If implicitViscosity.AND.mom Line 650  C--     End If implicitViscosity.AND.mom
650    
651        RETURN        RETURN
652        END        END
   
   
 C--      Cumulative diagnostic calculations (ie. time-averaging)  
 #ifdef INCLUDE_DIAGNOSTICS_INTERFACE_CODE  
 c        IF (taveFreq.GT.0.) THEN  
 c         CALL DO_TIME_AVERAGES(  
 c    I                           myTime, myIter, bi, bj, k, kup, kDown,  
 c    I                           ConvectCount,  
 c    I                           myThid )  
 c        ENDIF  
 #endif  
   

Legend:
Removed from v.1.54.2.4  
changed lines
  Added in v.1.59

  ViewVC Help
Powered by ViewVC 1.1.22