/[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.11 by adcroft, Mon Jun 1 20:36:13 1998 UTC revision 1.14 by cnh, Mon Jun 8 21:43:01 1998 UTC
# Line 39  C     myThid - Thread number for this in Line 39  C     myThid - Thread number for this in
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 68  C                          into fVerTerm Line 70  C                          into fVerTerm
70        _RL uTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL uTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
71        _RL vTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL vTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
72        _RL wTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL wTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
73          _RL wVel  (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)
74        _RS maskC (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RS maskC (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
75        _RS maskUp(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RS maskUp(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
76        _RL aTerm (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL aTerm (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
# Line 91  C                          into fVerTerm Line 94  C                          into fVerTerm
94        _RL K23   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)        _RL K23   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)
95        _RL K33   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)        _RL K33   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)
96        _RL KapGM (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL KapGM (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
97          _RL KappaZT(1-Olx:sNx+Olx,1-Oly:sNy+Oly,Nz)
98    
99        INTEGER iMin, iMax        INTEGER iMin, iMax
100        INTEGER jMin, jMax        INTEGER jMin, jMax
101        INTEGER bi, bj        INTEGER bi, bj
# Line 106  C       pressure such that the resulting Line 111  C       pressure such that the resulting
111  C       with the free-surface evolution or the rigid-lid:  C       with the free-surface evolution or the rigid-lid:
112  C         U[n] = U* + dt x d/dx P  C         U[n] = U* + dt x d/dx P
113  C         V[n] = V* + dt x d/dy P  C         V[n] = V* + dt x d/dy P
 C       With implicit diffusion, the tracers must also be "finalized"  
 C         (1 + dt * K * d_zz) theta[n] = theta*  
 C         (1 + dt * K * d_zz) salt[n] = salt*  
114  C  C
115  C       "Calculation of Gs"  C       "Calculation of Gs"
116  C       ===================  C       ===================
# Line 122  C         Gv[n] = Gv( u[n], v[n], w, rho Line 124  C         Gv[n] = Gv( u[n], v[n], w, rho
124  C         Gt[n] = Gt( theta[n], u[n], v[n], w, K31, ... )  C         Gt[n] = Gt( theta[n], u[n], v[n], w, K31, ... )
125  C         Gs[n] = Gs( salt[n], u[n], v[n], w, K31, ... )  C         Gs[n] = Gs( salt[n], u[n], v[n], w, K31, ... )
126  C  C
127  C       "Time-stepping" or "Predicition"  C       "Time-stepping" or "Prediction"
128  C       ================================  C       ================================
129  C       The models variables are stepped forward with the appropriate  C       The models variables are stepped forward with the appropriate
130  C       time-stepping scheme (currently we use Adams-Bashforth II)  C       time-stepping scheme (currently we use Adams-Bashforth II)
# Line 137  C         U* = U[n] + dt x ( 3/2 Gu[n] - Line 139  C         U* = U[n] + dt x ( 3/2 Gu[n] -
139  C         V* = V[n] + dt x ( 3/2 Gv[n] - 1/2 Gv[n-1] )  C         V* = V[n] + dt x ( 3/2 Gv[n] - 1/2 Gv[n-1] )
140  C         theta[n+1] = theta[n] + dt x ( 3/2 Gt[n] - 1/2 atG[n-1] )  C         theta[n+1] = theta[n] + dt x ( 3/2 Gt[n] - 1/2 atG[n-1] )
141  C         salt[n+1] = salt[n] + dt x ( 3/2 Gt[n] - 1/2 atG[n-1] )  C         salt[n+1] = salt[n] + dt x ( 3/2 Gt[n] - 1/2 atG[n-1] )
142  C       or with implicit diffusion  C       With implicit diffusion:
143  C         theta* = theta[n] + dt x ( 3/2 Gt[n] - 1/2 atG[n-1] )  C         theta* = theta[n] + dt x ( 3/2 Gt[n] - 1/2 atG[n-1] )
 C  
144  C         salt* = salt[n] + dt x ( 3/2 Gt[n] - 1/2 atG[n-1] )  C         salt* = salt[n] + dt x ( 3/2 Gt[n] - 1/2 atG[n-1] )
145    C         (1 + dt * K * d_zz) theta[n] = theta*
146    C         (1 + dt * K * d_zz) salt[n] = salt*
147  C---  C---
148    
   
149  C--   Set up work arrays with valid (i.e. not NaN) values  C--   Set up work arrays with valid (i.e. not NaN) values
150  C     These inital values do not alter the numerical results. They  C     These inital values do not alter the numerical results. They
151  C     just ensure that all memory references are to valid floating  C     just ensure that all memory references are to valid floating
# Line 167  C     uninitialised but inert locations. Line 169  C     uninitialised but inert locations.
169           K13(i,j,k) = 0. _d 0           K13(i,j,k) = 0. _d 0
170           K23(i,j,k) = 0. _d 0           K23(i,j,k) = 0. _d 0
171           K33(i,j,k) = 0. _d 0           K33(i,j,k) = 0. _d 0
172             KappaZT(i,j,k) = 0. _d 0
173          ENDDO          ENDDO
174          rhokm1(i,j)  = 0. _d 0          rhokm1(i,j)  = 0. _d 0
175          rhokp1(i,j)  = 0. _d 0          rhokp1(i,j)  = 0. _d 0
# Line 181  C--     Set up work arrays that need val Line 184  C--     Set up work arrays that need val
184          DO j=1-OLy,sNy+OLy          DO j=1-OLy,sNy+OLy
185           DO i=1-OLx,sNx+OLx           DO i=1-OLx,sNx+OLx
186            wTrans(i,j)  = 0. _d 0            wTrans(i,j)  = 0. _d 0
187              wVel  (i,j,1) = 0. _d 0
188              wVel  (i,j,2) = 0. _d 0
189            fVerT(i,j,1) = 0. _d 0            fVerT(i,j,1) = 0. _d 0
190            fVerT(i,j,2) = 0. _d 0            fVerT(i,j,2) = 0. _d 0
191            fVerS(i,j,1) = 0. _d 0            fVerS(i,j,1) = 0. _d 0
# Line 261  C--     Calculate iso-neutral slopes for Line 266  C--     Calculate iso-neutral slopes for
266       I            myThid )       I            myThid )
267  C--     Calculate static stability and mix where convectively unstable  C--     Calculate static stability and mix where convectively unstable
268          CALL CONVECT(          CALL CONVECT(
269       I      bi,bj,iMin,iMax,jMin,jMax,K,rhoKm1,rhoKp1,       I      bi,bj,iMin,iMax,jMin,jMax,K,rhotmp,rhoKp1,
270       I      myTime,myIter,myThid)       I      myTime,myIter,myThid)
271  C--     Density of K-1 level (above W(K)) reference to K-1 level  C--     Density of K-1 level (above W(K)) reference to K-1 level
272          CALL FIND_RHO(          CALL FIND_RHO(
# Line 300  C--     Initial boundary condition on ba Line 305  C--     Initial boundary condition on ba
305  C--      Get temporary terms used by tendency routines  C--      Get temporary terms used by tendency routines
306           CALL CALC_COMMON_FACTORS (           CALL CALC_COMMON_FACTORS (
307       I        bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,       I        bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,
308       O        xA,yA,uTrans,vTrans,wTrans,maskC,maskUp,       O        xA,yA,uTrans,vTrans,wTrans,wVel,maskC,maskUp,
309         I        myThid)
310    
311    C--      Calculate the total vertical diffusivity
312             CALL CALC_DIFFUSIVITY(
313         I        bi,bj,iMin,iMax,jMin,jMax,K,
314         I        maskC,maskUp,KapGM,K33,
315         O        KappaZT,
316       I        myThid)       I        myThid)
317    
318  C--      Calculate accelerations in the momentum equations  C--      Calculate accelerations in the momentum equations
319           IF ( momStepping ) THEN           IF ( momStepping ) THEN
320            CALL CALC_MOM_RHS(            CALL CALC_MOM_RHS(
321       I         bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,       I         bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,
322       I         xA,yA,uTrans,vTrans,wTrans,maskC,       I         xA,yA,uTrans,vTrans,wTrans,wVel,maskC,
323       I         pH,       I         pH,
324       U         aTerm,xTerm,cTerm,mTerm,pTerm,       U         aTerm,xTerm,cTerm,mTerm,pTerm,
325       U         fZon, fMer, fVerU, fVerV,       U         fZon, fMer, fVerU, fVerV,
# Line 319  C--      Calculate active tracer tendenc Line 331  C--      Calculate active tracer tendenc
331            CALL CALC_GT(            CALL CALC_GT(
332       I         bi,bj,iMin,iMax,jMin,jMax, k,kM1,kUp,kDown,       I         bi,bj,iMin,iMax,jMin,jMax, k,kM1,kUp,kDown,
333       I         xA,yA,uTrans,vTrans,wTrans,maskUp,       I         xA,yA,uTrans,vTrans,wTrans,maskUp,
334       I         K13,K23,K33,KapGM,       I         K13,K23,KappaZT,KapGM,
335       U         aTerm,xTerm,fZon,fMer,fVerT,       U         aTerm,xTerm,fZon,fMer,fVerT,
336       I         myThid)       I         myThid)
337           ENDIF           ENDIF
# Line 342  C--      Diagnose barotropic divergence Line 354  C--      Diagnose barotropic divergence
354       I       myThid)       I       myThid)
355    
356          ENDDO ! K          ENDDO ! K
357    
358    C--     Implicit diffusion
359            IF (implicitDiffusion) THEN
360             CALL IMPLDIFF( bi, bj, iMin, iMax, jMin, jMax,
361         I                  KappaZT,
362         I                  myThid )
363            ENDIF
364    
365         ENDDO         ENDDO
366        ENDDO        ENDDO
367    
368  !dbg  write(0,*) 'dynamics: pS',minval(cg2d_x),maxval(cg2d_x)        write(0,*) 'dynamics: pS',minval(cg2d_x),maxval(cg2d_x)
369  !dbg  write(0,*) 'dynamics: U',minval(uVel(1:sNx,1:sNy,:,:,:)),        write(0,*) 'dynamics: U',minval(uVel(1:sNx,1:sNy,:,:,:)),
370  !dbg &                         maxval(uVel(1:sNx,1:sNy,:,:,:))       &                         maxval(uVel(1:sNx,1:sNy,:,:,:))
371  !dbg  write(0,*) 'dynamics: V',minval(vVel(1:sNx,1:sNy,:,:,:)),        write(0,*) 'dynamics: V',minval(vVel(1:sNx,1:sNy,:,:,:)),
372  !dbg &                         maxval(vVel(1:sNx,1:sNy,:,:,:))       &                         maxval(vVel(1:sNx,1:sNy,:,:,:))
373  !dbg  write(0,*) 'dynamics: K13',minval(K13(1:sNx,1:sNy,:)),        write(0,*) 'dynamics: K13',minval(K13(1:sNx,1:sNy,:)),
374  !dbg &                         maxval(K13(1:sNx,1:sNy,:))       &                         maxval(K13(1:sNx,1:sNy,:))
375  !dbg  write(0,*) 'dynamics: K23',minval(K23(1:sNx,1:sNy,:)),        write(0,*) 'dynamics: K23',minval(K23(1:sNx,1:sNy,:)),
376  !dbg &                         maxval(K23(1:sNx,1:sNy,:))       &                         maxval(K23(1:sNx,1:sNy,:))
377  !dbg  write(0,*) 'dynamics: K33',minval(K33(1:sNx,1:sNy,:)),        write(0,*) 'dynamics: K33',minval(K33(1:sNx,1:sNy,:)),
378  !dbg &                         maxval(K33(1:sNx,1:sNy,:))       &                         maxval(K33(1:sNx,1:sNy,:))
379  !dbg  write(0,*) 'dynamics: gT',minval(gT(1:sNx,1:sNy,:,:,:)),        write(0,*) 'dynamics: gT',minval(gT(1:sNx,1:sNy,:,:,:)),
380  !dbg &                         maxval(gT(1:sNx,1:sNy,:,:,:))       &                         maxval(gT(1:sNx,1:sNy,:,:,:))
381  !dbg  write(0,*) 'dynamics: T',minval(Theta(1:sNx,1:sNy,:,:,:)),        write(0,*) 'dynamics: T',minval(Theta(1:sNx,1:sNy,:,:,:)),
382  !dbg &                         maxval(Theta(1:sNx,1:sNy,:,:,:))       &                         maxval(Theta(1:sNx,1:sNy,:,:,:))
383  !dbg  write(0,*) 'dynamics: pH',minval(pH/(Gravity*Rhonil)),        write(0,*) 'dynamics: pH',minval(pH/(Gravity*Rhonil)),
384  !dbg &                          maxval(pH/(Gravity*Rhonil))       &                          maxval(pH/(Gravity*Rhonil))
385    
386        RETURN        RETURN
387        END        END

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.14

  ViewVC Help
Powered by ViewVC 1.1.22