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

Contents of /MITgcm/model/inc/SURFACE.h

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


Revision 1.7 - (show annotations) (download)
Fri Nov 22 02:50:34 2002 UTC (21 years, 5 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint47a_post, checkpoint47b_post
Changes since 1.6: +8 -6 lines
File MIME type: text/plain
keep the oragraphic field in a common block here
 (moved from a local common of ini_depth)

1 C $Header: /u/gcmpack/MITgcm/model/inc/SURFACE.h,v 1.6 2002/02/09 23:38:55 jmc Exp $
2 C $Name: $
3 C
4 CBOP
5 C !ROUTINE: SURFACE.h
6 C !INTERFACE:
7 C include SURFACE.h
8 C !DESCRIPTION: \bv
9 C *==========================================================*
10 C | SURFACE.h
11 C | o Header file defining surface-related model varaibles
12 C *==========================================================*
13 C | Contains variables relative to the surface position
14 C | that are held fixed in linear free-surface formulation
15 C | but can vary with time with a non-linear free-surface.
16 C *==========================================================*
17 C \ev
18 CEOP
19
20 C-- COMMON /SURF_FIXED/ fixed surface arrays (Real)
21 C Bo_surf :: Boyancy|1/rho [ocean|atmos] at surface level [=g|alpha(p_o)]
22 C recip_Bo :: 1/Bo_surf
23 C topoZ :: topographic height [m] (used mainly for atmosphere)
24 COMMON /SURF_FIXED/ Bo_surf, recip_Bo, topoZ
25 _RL Bo_surf (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
26 _RL recip_Bo(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
27 _RS topoZ (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
28
29 C-- COMMON /SURF_INDEX/ Common block for surface related index
30 C ksurfC :: vertical index of the surface tracer cell
31 C ksurfW :: vertical index of the surface U point
32 C ksurfS :: vertical index of the surface V point
33 C IMPORTANT: ksurfC,W,S = Nr+1 where the fluid column is empty (continent)
34 COMMON /SURF_INDEX/ ksurfC, ksurfW, ksurfS
35 INTEGER ksurfC(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
36 INTEGER ksurfW(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
37 INTEGER ksurfS(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
38
39 #ifdef EXACT_CONSERV
40 C hDivFlow :: Div. Barotropic Flow at current time [transport unit m3/s]
41 COMMON /EXACT_ETA_LOCAL/ hDivFlow
42 _RL hDivFlow(1-Olx:sNx+Olx,1-Oly:sNy+Oly,nSx,nSy)
43 #endif
44
45 #ifdef NONLIN_FRSURF
46 C-- COMMON /SURF_CHANGE/ transient varariable used for Non-Lin Free-Surf
47 C hFac_surfC :: New thickness factor of the surface level
48 C center (Tracer point)
49 C hFac_surfW :: idem, West interface (U point)
50 C hFac_surfS :: idem, South interface (V point)
51 C PmEpR :: keep the fresh water input (=-EmPmR) of the previous time step
52 COMMON /SURF_CHANGE/
53 & hFac_surfC, hFac_surfW, hFac_surfS,
54 & PmEpR
55 _RS hFac_surfC(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
56 _RS hFac_surfW(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
57 _RS hFac_surfS(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
58 _RS PmEpR(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
59
60 #endif /* NONLIN_FRSURF */

  ViewVC Help
Powered by ViewVC 1.1.22