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

Contents of /MITgcm/model/src/calc_common_factors.F

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


Revision 1.16 - (show annotations) (download)
Tue May 29 14:01:36 2001 UTC (23 years, 1 month ago) by adcroft
Branch: MAIN
CVS Tags: checkpoint40pre3, checkpoint40pre1, checkpoint40pre2
Changes since 1.15: +17 -21 lines
Merge from branch pre38:
 o essential mods for cubed sphere
 o debugged atmosphere, dynamcis + physics (aim)
 o new packages (mom_vecinv, mom_fluxform, ...)

1 C $Header: /u/gcmpack/models/MITgcmUV/model/src/calc_common_factors.F,v 1.15.2.1 2001/03/30 22:56:00 jmc Exp $
2 C $Name: $
3
4 #include "CPP_OPTIONS.h"
5
6 CStartOfInterFace
7 SUBROUTINE CALC_COMMON_FACTORS(
8 I bi,bj,iMin,iMax,jMin,jMax,k,
9 O xA,yA,uTrans,vTrans,rTrans,maskUp,
10 I myThid)
11
12 C /==========================================================\
13 C | SUBROUTINE CALC_COMMON_FACTORS |
14 C | o Calculate common data (such as volume flux) for use |
15 C | by "Right hand side" subroutines. |
16 C |==========================================================|
17 C | Here, we calculate terms or spatially varying factors |
18 C | that are used at various points in the "RHS" subroutines.|
19 C | This reduces the amount of total work, total memory |
20 C | and therefore execution time and is generally a good |
21 C | idea. |
22 C \==========================================================/
23 IMPLICIT NONE
24
25 C == GLobal variables ==
26 #include "SIZE.h"
27 #include "DYNVARS.h"
28 #include "EEPARAMS.h"
29 #include "PARAMS.h"
30 #include "GRID.h"
31 #ifdef ALLOW_NONHYDROSTATIC
32 #include "GW.h"
33 #endif
34
35 C == Routine arguments ==
36 C bi, bj, iMin, iMax, jMin, jMax - Range of points for which calculation
37 C results will be set.
38 C xA - Tracer cell face area normal to X
39 C yA - Tracer cell face area normal to X
40 C uTrans - Zonal volume transport through cell face
41 C vTrans - Meridional volume transport through cell face
42 C rTrans - R-direction volume transport through cell face
43 C maskUp - land/water mask for Wvel points (above tracer level)
44 C myThid - Instance number for this innvocation of CALC_COMMON_FACTORS
45 C
46 INTEGER bi,bj,iMin,iMax,jMin,jMax,k
47 _RS xA (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
48 _RS yA (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
49 _RL uTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
50 _RL vTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
51 _RL rTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
52 _RS maskUp(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
53 C
54 INTEGER myThid
55 CEndOfInterface
56
57 C == Local variables ==
58 C I, J, K - Loop counters
59 INTEGER i,j
60
61 C-- Calculate mask for tracer cells (0 => land, 1 => water)
62 IF (K .EQ. 1) THEN
63 DO j=jMin,jMax
64 DO i=iMin,iMax
65 maskUp(i,j) = 0.
66 ENDDO
67 ENDDO
68 ELSE
69 DO j=jMin,jMax
70 DO i=iMin,iMax
71 maskUp(i,j) = maskC(i,j,k-1,bi,bj)*maskC(i,j,k,bi,bj)
72 ENDDO
73 ENDDO
74 ENDIF
75
76 C-- Calculate tracer cell face open areas
77 DO j=jMin,jMax
78 DO i=iMin,iMax
79 xA(i,j) = _dyG(i,j,bi,bj)
80 & *drF(k)*_hFacW(i,j,k,bi,bj)
81 yA(i,j) = _dxG(i,j,bi,bj)
82 & *drF(k)*_hFacS(i,j,k,bi,bj)
83 ENDDO
84 ENDDO
85
86 C-- Calculate velocity field "volume transports" through
87 C-- tracer cell faces.
88 DO j=jMin,jMax
89 DO i=iMin,iMax
90 uTrans(i,j) = uVel(i,j,k,bi,bj)*xA(i,j)
91 vTrans(i,j) = vVel(i,j,k,bi,bj)*yA(i,j)
92 ENDDO
93 ENDDO
94
95 C-- Calculate vertical "volume transport" through
96 C-- tracer cell face *above* this level.
97 DO j=jMin,jMax
98 DO i=iMin,iMax
99 rTrans(i,j) = wVel(i,j,k,bi,bj)*rA(i,j,bi,bj)
100 ENDDO
101 ENDDO
102
103 RETURN
104 END

  ViewVC Help
Powered by ViewVC 1.1.22