/[MITgcm]/MITgcm/model/inc/DYNVARS.h
ViewVC logotype

Annotation of /MITgcm/model/inc/DYNVARS.h

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


Revision 1.48 - (hide annotations) (download)
Fri Aug 15 19:28:17 2014 UTC (9 years, 9 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint65h, checkpoint65c, checkpoint65f, checkpoint65g, checkpoint65d, checkpoint65e
Changes since 1.47: +11 -6 lines
File MIME type: text/plain
remove gT & gS (except if USE_OLD_EXTERNAL_FORCING is defined)

1 jmc 1.48 C $Header: /u/gcmpack/MITgcm/model/inc/DYNVARS.h,v 1.47 2014/04/26 19:20:07 jmc Exp $
2 jmc 1.16 C $Name: $
3 edhill 1.22
4 cnh 1.17 CBOP
5     C !ROUTINE: DYNVARS.h
6     C !INTERFACE:
7     C include "DYNVARS.h"
8     C !DESCRIPTION:
9     C \bv
10     C *==========================================================*
11 jmc 1.32 C | DYNVARS.h
12     C | o Dynamical model variables (common block DYNVARS_R)
13 cnh 1.17 C *==========================================================*
14 jmc 1.32 C | The value and two levels of time tendency are held for
15     C | each prognostic variable.
16 cnh 1.17 C *==========================================================*
17     C \ev
18     CEOP
19 jmc 1.39
20     C State Variables:
21     C etaN :: free-surface r-anomaly (r unit) at current time level
22     C uVel :: zonal velocity (m/s, i=1 held at western face)
23     C vVel :: meridional velocity (m/s, j=1 held at southern face)
24     C theta :: potential temperature (oC, held at pressure/tracer point)
25     C salt :: salinity (ppt, held at pressure/tracer point)
26     C gX, gxNm1 :: Time tendencies at current and previous time levels.
27     C etaH :: surface r-anomaly, advanced in time consistently
28 jmc 1.32 C with 2.D flow divergence (Exact-Conservation):
29 jmc 1.44 C etaH^n+1 = etaH^n - delta_t*Div.(H^n U^n+1)
30     C note: a) used with "exactConserv", necessary for Non-Lin free-surf and mixed
31     C forward/backward free-surf time stepping (e.g., Crank-Nickelson)
32 jmc 1.42 C b) same as etaN but not necessarily at the same time, e.g.:
33 jmc 1.44 C implicDiv2DFlow=1 => etaH=etaN ; =0 => etaH=etaN^(n-1);
34 adcroft 1.9
35 jmc 1.27 #ifdef ALLOW_ADAMSBASHFORTH_3
36 adcroft 1.13 COMMON /DYNVARS_R/
37 heimbach 1.29 & etaN,
38 adcroft 1.13 & uVel,vVel,wVel,theta,salt,
39 jmc 1.48 & gU, gV,
40 jmc 1.27 & guNm, gvNm, gtNm, gsNm
41     #else /* ALLOW_ADAMSBASHFORTH_3 */
42     COMMON /DYNVARS_R/
43 heimbach 1.29 & etaN,
44 jmc 1.27 & uVel,vVel,wVel,theta,salt,
45 jmc 1.48 & gU, gV,
46 jmc 1.27 & guNm1,gvNm1,gtNm1,gsNm1
47     #endif /* ALLOW_ADAMSBASHFORTH_3 */
48 adcroft 1.13 _RL etaN (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
49 cnh 1.5 _RL uVel (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
50     _RL vVel (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
51 adcroft 1.10 _RL wVel (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
52 cnh 1.5 _RL theta(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
53     _RL salt (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
54 jmc 1.27 _RL gU(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
55     _RL gV(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
56     #ifdef ALLOW_ADAMSBASHFORTH_3
57     _RL guNm(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy,2)
58     _RL gvNm(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy,2)
59     _RL gtNm(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy,2)
60     _RL gsNm(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy,2)
61     #else /* ALLOW_ADAMSBASHFORTH_3 */
62 cnh 1.5 _RL guNm1(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
63     _RL gvNm1(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
64     _RL gtNm1(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
65     _RL gsNm1(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
66 jmc 1.27 #endif /* ALLOW_ADAMSBASHFORTH_3 */
67 heimbach 1.15
68 jmc 1.48 #ifdef USE_OLD_EXTERNAL_FORCING
69     COMMON /DYNVARS_OLD/
70     & gT, gS
71     _RL gT(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
72     _RL gS(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
73     #endif
74    
75 heimbach 1.29 COMMON /DYNVARS_R_2/
76     & etaH
77     _RL etaH (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
78    
79 jmc 1.42 #if (defined (ALLOW_3D_DIFFKR) || defined (ALLOW_DIFFKR_CONTROL))
80 dimitri 1.30 C diffKr :: full 3D specification of Laplacian diffusion coeff.
81     C for mixing of tracers vertically ( units of r^2/s )
82 heimbach 1.15 COMMON /DYNVARS_DIFFKR/
83     & diffKr
84     _RL diffKr (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
85     #endif
86 jmc 1.38
87 jmc 1.47 C The following blocks containing requires anomaly fields of control vars
88 jmc 1.48 C and related to Options:
89 jmc 1.47 C ALLOW_KAPGM_CONTROL , ALLOW_KAPREDI_CONTROL and ALLOW_BOTTOMDRAG_CONTROL
90     C have been moved to header file "CTRL_FIELDS.h"
91    
92 m_bates 1.45 #ifdef ALLOW_EDDYPSI
93 m_bates 1.46 C uMean :: The mean zonal velocity (residual velocity less the bolus velocity)
94     C vMean :: The mean meridional velocity (residual velocity less the bolus velocity)
95     C tauxEddy :: The eddy stress used in the momentum equation of a residual model
96     C tauyEddy :: The eddy stress used in the momentum equation of a residual model
97    
98     COMMON /DYNVARS_EDDYPSI/ tauxEddy,tauyEddy, uMean, vMean
99 m_bates 1.45
100 m_bates 1.46 _RL uMean( 1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
101     _RL vMean( 1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
102 m_bates 1.45 _RL tauxEddy(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
103     _RL tauyEddy(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
104     #endif
105 mlosch 1.18
106 dimitri 1.31 #ifdef ALLOW_BL79_LAT_VARY
107     C BL79LatArray :: is used for latitudinal dependence of
108     C BryanLewis79 vertical diffusivity
109 dimitri 1.34 COMMON /DYNVARS_BL79LatArray/ BL79LatArray
110 dimitri 1.31 _RL BL79LatArray (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
111     #endif
112    
113 jmc 1.39 C Diagnostic Variables:
114 jmc 1.32 C phiHydLow :: Phi-Hydrostatic at r-lower boundary
115     C (bottom in z-coordinates, top in p-coordinates)
116     C totPhiHyd :: total hydrostatic Potential (anomaly, for now),
117     C at cell center level ; includes surface contribution.
118     C (for diagnostic + used in Z-coord with EOS_funct_P)
119 jmc 1.39 C rhoInSitu :: In-Situ density anomaly [kg/m^3] at cell center level.
120 jmc 1.32 C hMixLayer :: Mixed layer depth [m]
121     C (for diagnostic + used GMRedi "fm07")
122 jmc 1.26 C IVDConvCount :: Impl.Vert.Diffusion convection counter:
123 jmc 1.32 C = 0 (not convecting) or 1 (convecting)
124     COMMON /DYNVARS_DIAG/
125     & phiHydLow, totPhiHyd,
126 jmc 1.39 & rhoInSitu,
127 jmc 1.32 & hMixLayer, IVDConvCount
128 mlosch 1.18 _RL phiHydLow(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
129 jmc 1.20 _RL totPhiHyd(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
130 jmc 1.39 _RL rhoInSitu(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
131 jmc 1.32 _RL hMixLayer(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
132 jmc 1.26 _RL IVDConvCount(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
133 jmc 1.32

  ViewVC Help
Powered by ViewVC 1.1.22