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

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

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


Revision 1.34 - (hide annotations) (download)
Tue Sep 18 19:07:35 2001 UTC (22 years, 9 months ago) by adcroft
Branch: MAIN
Changes since 1.33: +10 -272 lines
Moved calc_gt.F, calc_gs.F and calc_gtr1.F to model/src from pkg/generic_advdiff

1 adcroft 1.34 C $Header: $
2     C $Name: $
3 cnh 1.1
4 cnh 1.19 #include "CPP_OPTIONS.h"
5 cnh 1.1
6     SUBROUTINE CALC_GT(
7     I bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,
8 adcroft 1.32 I xA,yA,uTrans,vTrans,rTrans,maskUp,
9 adcroft 1.25 I KappaRT,
10 adcroft 1.28 U fVerT,
11 cnh 1.18 I myCurrentTime, myThid )
12 cnh 1.1 C /==========================================================\
13     C | SUBROUTINE CALC_GT |
14     C | o Calculate the temperature tendency terms. |
15     C |==========================================================|
16     C | A procedure called EXTERNAL_FORCING_T is called from |
17     C | here. These procedures can be used to add per problem |
18     C | heat flux source terms. |
19     C | Note: Although it is slightly counter-intuitive the |
20     C | EXTERNAL_FORCING routine is not the place to put |
21     C | file I/O. Instead files that are required to |
22     C | calculate the external source terms are generally |
23     C | read during the model main loop. This makes the |
24     C | logisitics of multi-processing simpler and also |
25     C | makes the adjoint generation simpler. It also |
26     C | allows for I/O to overlap computation where that |
27     C | is supported by hardware. |
28     C | Aside from the problem specific term the code here |
29     C | forms the tendency terms due to advection and mixing |
30     C | The baseline implementation here uses a centered |
31     C | difference form for the advection term and a tensorial |
32     C | divergence of a flux form for the diffusive term. The |
33     C | diffusive term is formulated so that isopycnal mixing and|
34     C | GM-style subgrid-scale terms can be incorporated b simply|
35     C | setting the diffusion tensor terms appropriately. |
36     C \==========================================================/
37     IMPLICIT NONE
38    
39     C == GLobal variables ==
40     #include "SIZE.h"
41     #include "DYNVARS.h"
42     #include "EEPARAMS.h"
43     #include "PARAMS.h"
44 adcroft 1.34 #include "GAD.h"
45 cnh 1.1
46     C == Routine arguments ==
47     C fVerT - Flux of temperature (T) in the vertical
48     C direction at the upper(U) and lower(D) faces of a cell.
49     C maskUp - Land mask used to denote base of the domain.
50     C xA - Tracer cell face area normal to X
51     C yA - Tracer cell face area normal to X
52     C uTrans - Zonal volume transport through cell face
53     C vTrans - Meridional volume transport through cell face
54 cnh 1.14 C rTrans - Vertical volume transport through cell face
55 cnh 1.1 C bi, bj, iMin, iMax, jMin, jMax - Range of points for which calculation
56     C results will be set.
57     C myThid - Instance number for this innvocation of CALC_GT
58     _RL fVerT (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)
59     _RS xA (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
60     _RS yA (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
61     _RL uTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
62     _RL vTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
63 cnh 1.14 _RL rTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
64 cnh 1.1 _RS maskUp(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
65 cnh 1.16 _RL KappaRT(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr)
66 adcroft 1.3 INTEGER k,kUp,kDown,kM1
67 cnh 1.1 INTEGER bi,bj,iMin,iMax,jMin,jMax
68     INTEGER myThid
69 cnh 1.18 _RL myCurrentTime
70 cnh 1.1
71     C == Local variables ==
72 heimbach 1.24
73     #ifdef ALLOW_AUTODIFF_TAMC
74     C-- only the kUp part of fverT is set in this subroutine
75     C-- the kDown is still required
76     fVerT(1,1,kDown) = fVerT(1,1,kDown)
77 adcroft 1.20 #endif
78 cnh 1.1
79 adcroft 1.34 CALL GAD_CALC_RHS(
80     I bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,
81     I xA,yA,uTrans,vTrans,rTrans,maskUp,
82     I diffKhT, diffK4T, KappaRT, theta,
83     I GAD_TEMPERATURE, tempAdvScheme,
84     U fVerT, gT,
85     I myThid )
86 cnh 1.1
87 cnh 1.19 #ifdef INCLUDE_T_FORCING_CODE
88 cnh 1.1 C-- External thermal forcing term(s)
89 cnh 1.19 CALL EXTERNAL_FORCING_T(
90     I iMin,iMax,jMin,jMax,bi,bj,k,
91     I myCurrentTime,myThid)
92     #endif /* INCLUDE_T_FORCING_CODE */
93 cnh 1.1
94     RETURN
95     END

  ViewVC Help
Powered by ViewVC 1.1.22