/[MITgcm]/MITgcm/model/src/calc_gs.F
ViewVC logotype

Diff of /MITgcm/model/src/calc_gs.F

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.33 by jmc, Sat Jun 15 03:28:39 2002 UTC revision 1.41 by jmc, Sun Nov 6 22:19:08 2005 UTC
# Line 1  Line 1 
1  C $Header$  C $Header$
2  C $Name$  C $Name$
3    
4    #include "PACKAGES_CONFIG.h"
5  #include "CPP_OPTIONS.h"  #include "CPP_OPTIONS.h"
6    
7  CBOP  CBOP
# Line 8  C     !ROUTINE: CALC_GS Line 9  C     !ROUTINE: CALC_GS
9  C     !INTERFACE:  C     !INTERFACE:
10        SUBROUTINE CALC_GS(        SUBROUTINE CALC_GS(
11       I           bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,       I           bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,
12       I           xA,yA,uTrans,vTrans,rTrans,maskUp,       I           xA,yA,uTrans,vTrans,rTrans,rTransKp1,maskUp,
13       I           KappaRS,       I           KappaRS,
14       U           fVerS,       U           fVerS,
15       I           myTime,myIter,myThid )       I           myTime,myIter,myThid )
# Line 47  C     == GLobal variables == Line 48  C     == GLobal variables ==
48  #include "DYNVARS.h"  #include "DYNVARS.h"
49  #include "EEPARAMS.h"  #include "EEPARAMS.h"
50  #include "PARAMS.h"  #include "PARAMS.h"
51    #ifdef ALLOW_GENERIC_ADVDIFF
52  #include "GAD.h"  #include "GAD.h"
53    #endif
54    
55  C     !INPUT/OUTPUT PARAMETERS:  C     !INPUT/OUTPUT PARAMETERS:
56  C     == Routine arguments ==  C     == Routine arguments ==
# Line 58  C     xA      :: Tracer cell face area n Line 61  C     xA      :: Tracer cell face area n
61  C     yA      :: Tracer cell face area normal to X  C     yA      :: Tracer cell face area normal to X
62  C     uTrans  :: Zonal volume transport through cell face  C     uTrans  :: Zonal volume transport through cell face
63  C     vTrans  :: Meridional volume transport through cell face  C     vTrans  :: Meridional volume transport through cell face
64  C     rTrans  :: Vertical volume transport through cell face  C     rTrans  ::   Vertical volume transport at interface k
65    C     rTransKp1 :: Vertical volume transport at inteface k+1
66  C     bi, bj, iMin, iMax, jMin, jMax :: Range of points for which calculation  C     bi, bj, iMin, iMax, jMin, jMax :: Range of points for which calculation
67  C                                      results will be set.  C                                      results will be set.
68  C     myThid :: Instance number for this innvocation of CALC_GT  C     myThid :: Instance number for this innvocation of CALC_GT
# Line 68  C     myThid :: Instance number for this Line 72  C     myThid :: Instance number for this
72        _RL uTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL uTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
73        _RL vTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL vTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
74        _RL rTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL rTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
75          _RL rTransKp1(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
76        _RS maskUp(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RS maskUp(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
77        _RL KappaRS(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr)        _RL KappaRS(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
78        INTEGER k,kUp,kDown,kM1        INTEGER k,kUp,kDown,kM1
79        INTEGER bi,bj,iMin,iMax,jMin,jMax        INTEGER bi,bj,iMin,iMax,jMin,jMax
80        _RL     myTime        _RL     myTime
# Line 78  C     myThid :: Instance number for this Line 83  C     myThid :: Instance number for this
83    
84  CEOP  CEOP
85    
86    #ifdef ALLOW_GENERIC_ADVDIFF
87  C     === Local variables ===  C     === Local variables ===
88        LOGICAL calcAdvection        LOGICAL calcAdvection
89          INTEGER iterNb
90    #ifdef ALLOW_ADAMSBASHFORTH_3
91          INTEGER m1, m2
92    #endif
93    
94  #ifdef ALLOW_AUTODIFF_TAMC  #ifdef ALLOW_AUTODIFF_TAMC
95  C--   only the kUp part of fverS is set in this subroutine  C--   only the kUp part of fverS is set in this subroutine
# Line 87  C--   the kDown is still required Line 97  C--   the kDown is still required
97        fVerS(1,1,kDown) = fVerS(1,1,kDown)        fVerS(1,1,kDown) = fVerS(1,1,kDown)
98  #endif  #endif
99    
100    C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
101    
102        calcAdvection = saltAdvection .AND. .NOT.saltMultiDimAdvec        calcAdvection = saltAdvection .AND. .NOT.saltMultiDimAdvec
103        CALL GAD_CALC_RHS(        iterNb = myIter
104          IF (staggerTimeStep) iterNb = myIter - 1
105    
106    #ifdef ALLOW_ADAMSBASHFORTH_3
107          IF ( AdamsBashforth_S ) THEN
108            m1 = 1 + MOD(iterNb+1,2)
109            m2 = 1 + MOD( iterNb ,2)
110            CALL GAD_CALC_RHS(
111       I           bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,       I           bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,
112       I           xA,yA,uTrans,vTrans,rTrans,maskUp,       I           xA,yA,uTrans,vTrans,rTrans,rTransKp1,maskUp,
113       I           diffKhS, diffK4S, KappaRS, Salt,       I           uVel, vVel, wVel,
114       I           GAD_SALINITY, saltAdvScheme, calcAdvection,       I           diffKhS, diffK4S, KappaRS,
115         I           gsNm(1-Olx,1-Oly,1,1,1,m2), salt,
116         I           GAD_SALINITY, saltAdvScheme, saltVertAdvScheme,
117         I           calcAdvection, saltImplVertAdv,
118       U           fVerS, gS,       U           fVerS, gS,
119       I           myThid )       I           myTime, myIter, myThid )
120          ELSE
121    #endif /* ALLOW_ADAMSBASHFORTH_3 */
122            CALL GAD_CALC_RHS(
123         I           bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,
124         I           xA,yA,uTrans,vTrans,rTrans,rTransKp1,maskUp,
125         I           uVel, vVel, wVel,
126         I           diffKhS, diffK4S, KappaRS, salt, salt,
127         I           GAD_SALINITY, saltAdvScheme, saltVertAdvScheme,
128         I           calcAdvection, saltImplVertAdv,
129         U           fVerS, gS,
130         I           myTime, myIter, myThid )
131    #ifdef ALLOW_ADAMSBASHFORTH_3
132          ENDIF
133    #endif
134    
135  C--   External salinity forcing term(s) inside Adams-Bashforth:  C--   External salinity forcing term(s) inside Adams-Bashforth:
136        IF ( saltForcing .AND. forcing_In_AB )        IF ( saltForcing .AND. forcing_In_AB )
# Line 102  C--   External salinity forcing term(s) Line 138  C--   External salinity forcing term(s)
138       I     iMin,iMax,jMin,jMax,bi,bj,k,       I     iMin,iMax,jMin,jMax,bi,bj,k,
139       I     myTime,myThid)       I     myTime,myThid)
140    
141        IF ( saltAdamsBashforth ) THEN        IF ( AdamsBashforthGs ) THEN
142    #ifdef ALLOW_ADAMSBASHFORTH_3
143            CALL ADAMS_BASHFORTH3(
144         I                        bi, bj, k,
145         U                        gS, gsNm,
146         I                        saltStartAB, iterNb, myThid )
147    #else
148          CALL ADAMS_BASHFORTH2(          CALL ADAMS_BASHFORTH2(
149       I                        bi, bj, K,       I                        bi, bj, k,
150       U                        gS, gSnm1,       U                        gS, gsNm1,
151       I                        myIter, myThid )       I                        iterNb, myThid )
152    #endif
153        ENDIF        ENDIF
154    
155  C--   External salinity forcing term(s) outside Adams-Bashforth:  C--   External salinity forcing term(s) outside Adams-Bashforth:
# Line 118  C--   External salinity forcing term(s) Line 161  C--   External salinity forcing term(s)
161  #ifdef NONLIN_FRSURF  #ifdef NONLIN_FRSURF
162        IF (nonlinFreeSurf.GT.0) THEN        IF (nonlinFreeSurf.GT.0) THEN
163          CALL FREESURF_RESCALE_G(          CALL FREESURF_RESCALE_G(
164       I                          bi, bj, K,       I                          bi, bj, k,
165       U                          gS,       U                          gS,
166       I                          myThid )       I                          myThid )
167            IF ( AdamsBashforthGs ) THEN
168    #ifdef ALLOW_ADAMSBASHFORTH_3
169            CALL FREESURF_RESCALE_G(
170         I                          bi, bj, k,
171         U                          gsNm(1-OLx,1-OLy,1,1,1,1),
172         I                          myThid )
173            CALL FREESURF_RESCALE_G(
174         I                          bi, bj, k,
175         U                          gsNm(1-OLx,1-OLy,1,1,1,2),
176         I                          myThid )
177    #else
178            CALL FREESURF_RESCALE_G(
179         I                          bi, bj, k,
180         U                          gsNm1,
181         I                          myThid )
182    #endif
183            ENDIF
184        ENDIF        ENDIF
185  #endif /* NONLIN_FRSURF */  #endif /* NONLIN_FRSURF */
186    
187    #endif /* ALLOW_GENERIC_ADVDIFF */
188    
189        RETURN        RETURN
190        END        END

Legend:
Removed from v.1.33  
changed lines
  Added in v.1.41

  ViewVC Help
Powered by ViewVC 1.1.22