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

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

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


Revision 1.15 - (hide annotations) (download)
Wed Feb 7 21:48:02 2001 UTC (23 years, 4 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint38, c37_adj, checkpoint39, checkpoint37, checkpoint36, checkpoint35
Branch point for: pre38
Changes since 1.14: +4 -18 lines
remove unused array "rVel"

1 jmc 1.15 C $Header: /u/gcmpack/models/MITgcmUV/model/src/calc_common_factors.F,v 1.14 2001/02/04 14:38:45 cnh Exp $
2     C $Name: $
3 cnh 1.1
4 cnh 1.10 #include "CPP_OPTIONS.h"
5 cnh 1.1
6     CStartOfInterFace
7     SUBROUTINE CALC_COMMON_FACTORS(
8     I bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,
9 jmc 1.15 O xA,yA,uTrans,vTrans,rTrans,maskC,maskUp,
10 cnh 1.1 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 adcroft 1.11 #ifdef ALLOW_NONHYDROSTATIC
32     #include "GW.h"
33     #endif
34 cnh 1.1
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 cnh 1.7 C rTrans - R-direction volume transport through cell face
43 cnh 1.1 C maskC - land/water mask for tracer points
44     C maskUp - land/water mask for Wvel points (above tracer level)
45     C myThid - Instance number for this innvocation of CALC_COMMON_FACTORS
46     C
47     INTEGER bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown
48     _RS xA (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
49     _RS yA (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
50     _RL uTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
51     _RL vTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
52 cnh 1.7 _RL rTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
53 cnh 1.1 _RS maskC (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
54     _RS maskUp(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
55     C
56     INTEGER myThid
57     CEndOfInterface
58    
59     C == Local variables ==
60     C I, J, K - Loop counters
61     C kUp, kDown, kM1 - Index for layer above and below. K_UP and K_DOWN
62     C are switched with layer to be the appropriate index
63     C into fluxUD.
64     INTEGER i,j
65 cnh 1.6 LOGICAL TOP_LAYER
66 heimbach 1.12
67 cnh 1.6 TOP_LAYER = K .EQ. 1
68    
69 adcroft 1.11 C-- Calculate mask for tracer cells (0 => land, 1 => water)
70     DO j=jMin,jMax
71     DO i=iMin,iMax
72     maskC(i,j) = 1.
73     IF (_hFacC(i,j,k,bi,bj).eq.0.) maskC(i,j)=0.
74     maskUp(i,j) = 1.
75     IF (_hFacC(i,j,k,bi,bj).eq.0. .OR. TOP_LAYER )
76     & maskUp(i,j)=0.
77     ENDDO
78     ENDDO
79    
80 cnh 1.6 C-- Calculate tracer cell face open areas
81 cnh 1.1 DO j=jMin,jMax
82     DO i=iMin,iMax
83 cnh 1.9 xA(i,j) = _dyG(i,j,bi,bj)
84     & *drF(k)*_hFacW(i,j,k,bi,bj)
85     yA(i,j) = _dxG(i,j,bi,bj)
86     & *drF(k)*_hFacS(i,j,k,bi,bj)
87 cnh 1.1 ENDDO
88     ENDDO
89    
90 cnh 1.6 C-- Calculate velocity field "volume transports" through
91     C-- tracer cell faces.
92 cnh 1.1 DO j=jMin,jMax
93     DO i=iMin,iMax
94     uTrans(i,j) = uVel(i,j,k,bi,bj)*xA(i,j)
95     vTrans(i,j) = vVel(i,j,k,bi,bj)*yA(i,j)
96     ENDDO
97     ENDDO
98    
99 cnh 1.6 C-- Calculate vertical "volume transport" through
100     C-- tracer cell face *above* this level.
101 adcroft 1.13 DO j=jMin,jMax
102 adcroft 1.11 DO i=iMin,iMax
103 jmc 1.15 rTrans(i,j) = wVel(i,j,k,bi,bj)*rA(i,j,bi,bj)
104 adcroft 1.11 ENDDO
105 cnh 1.6 ENDDO
106 cnh 1.1
107     RETURN
108     END

  ViewVC Help
Powered by ViewVC 1.1.22