/[MITgcm]/MITgcm/pkg/aim_v23/com_physvar.h
ViewVC logotype

Contents of /MITgcm/pkg/aim_v23/com_physvar.h

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


Revision 1.1 - (show annotations) (download)
Fri Nov 22 17:16:06 2002 UTC (21 years, 6 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint51k_post, checkpoint47e_post, checkpoint52l_pre, hrcube4, hrcube5, checkpoint50c_post, checkpoint52d_pre, checkpoint48e_post, checkpoint50c_pre, checkpoint52j_pre, checkpoint51o_pre, checkpoint51l_post, checkpoint48i_post, checkpoint50d_pre, checkpoint52k_post, checkpoint51, checkpoint50, checkpoint52, checkpoint50d_post, checkpoint52f_post, checkpoint50b_pre, checkpoint51f_post, checkpoint48b_post, checkpoint51d_post, checkpoint48c_pre, checkpoint47d_pre, checkpoint51t_post, checkpoint51n_post, checkpoint52i_pre, hrcube_1, hrcube_2, hrcube_3, checkpoint51s_post, checkpoint47a_post, checkpoint48d_pre, checkpoint51j_post, checkpoint47i_post, checkpoint52e_pre, checkpoint52e_post, checkpoint51n_pre, checkpoint47d_post, checkpoint48d_post, checkpoint48f_post, checkpoint52b_pre, checkpoint51l_pre, checkpoint48h_post, checkpoint51q_post, checkpoint51b_pre, checkpoint47g_post, checkpoint52b_post, checkpoint52c_post, checkpoint51h_pre, checkpoint48a_post, checkpoint50f_post, checkpoint50a_post, checkpoint50f_pre, checkpoint52f_pre, checkpoint47j_post, branch-exfmods-tag, branchpoint-genmake2, checkpoint51r_post, checkpoint48c_post, checkpoint51i_post, checkpoint51b_post, checkpoint51c_post, checkpoint47b_post, checkpoint52d_post, checkpoint50g_post, checkpoint52a_pre, checkpoint50h_post, checkpoint52i_post, checkpoint50e_pre, checkpoint50i_post, checkpoint51i_pre, checkpoint52h_pre, checkpoint52j_post, checkpoint47f_post, checkpoint50e_post, branch-netcdf, checkpoint51e_post, checkpoint48, checkpoint49, checkpoint51o_post, checkpoint51f_pre, checkpoint47h_post, checkpoint52a_post, checkpoint51g_post, ecco_c52_e35, checkpoint50b_post, checkpoint51m_post, checkpoint51a_post, checkpoint51p_post, checkpoint48g_post, checkpoint51u_post
Branch point for: branch-exfmods-curt, branch-genmake2, branch-nonh, tg2-branch, netcdf-sm0, checkpoint51n_branch
File MIME type: text/plain
new aim pkg: adapted from Franco Molteni SPEEDY code, ver23

1 C $Header: $
2 C $Name: $
3
4 #ifdef ALLOW_AIM
5
6 C-- COMMON /PHYGR1/ : Model variables on gaussian grid (updated in PHYPAR)
7 C UG1 = u-wind
8 C VG1 = v-wind
9 C TG1 = abs. temperature
10 C QG1 = specific humidity (g/kg)
11 C PHIG1 = geopotential
12 C PSLG1 = log. of surface pressure
13 C VsurfSq = Square of surface wind speed (grid position = as T,Q)
14 c COMMON /PHYGR1/ TG1, QG1, Vsurfsq
15 c _RL UG1 (NGP,NLEV)
16 c _RL VG1 (NGP,NLEV)
17 _RL TG1 (NGP,NLEV)
18 _RL QG1 (NGP,NLEV)
19 c _RL PHIG1 (NGP,NLEV)
20 c _RL PSLG1 (NGP)
21 _RL VsurfSq(NGP)
22
23 C-- COMMON /PHYGR2/ : Diagnosed upper-air variables (updated in PHYPAR)
24 C SE = dry static energy <- replaced by Pot.Temp.
25 C RH = relative humidity
26 C QSAT = saturation specific humidity (g/kg)
27 c COMMON /PHYGR2/ SE, RH, QSAT
28 COMMON /PHYGR2/ RH
29 _RL SE (NGP,NLEV)
30 _RL RH (NGP,NLEV,MAX_NO_THREADS)
31 _RL QSAT (NGP,NLEV)
32
33
34 C-- COMMON /PHYGR3/ : Diagnosed surface variables (updated in PHYPAR)
35 C PSG = surface pressure (normalized)
36 C TS = surface temperature
37 C TSKIN = skin temperature
38 C U0 = near-surface u-wind
39 C V0 = near-surface v-wind
40 C T0 = near-surface air temperature
41 C Q0 = near-surface specific humidity (g/kg)
42 C CLOUDC = total cloud cover (fraction)
43 C CLTOP = norm. pressure at cloud top
44 c COMMON /PHYGR3/ PSG, TS, TSKIN,
45 COMMON /PHYGR3/ TS, TSKIN, T0, Q0, CLOUDC, CLTOP
46 _RL PSG (NGP)
47 _RL TS (NGP,MAX_NO_THREADS)
48 _RL TSKIN (NGP,MAX_NO_THREADS)
49 c _RL U0(NGP), V0(NGP)
50 _RL T0 (NGP,MAX_NO_THREADS)
51 _RL Q0 (NGP,MAX_NO_THREADS)
52 _RL CLTOP (NGP,MAX_NO_THREADS)
53 _RL CLOUDC(NGP,MAX_NO_THREADS)
54
55 C-- COMMON /PHYTEN/ : Physical param. tendencies (updated in PHYPAR)
56 C TT_CNV = temperature tendency due to convection
57 C QT_CNV = sp. humidity tendency due to convection
58 C TT_LSC = temperature tendency due to large-scale condensation
59 C QT_LSC = sp. humidity tendency due to large-scale condensation
60 C TT_RSW = temperature tendency due to short-wave radiation
61 C TT_RLW = temperature tendency due to long-wave radiation
62 C UT_PBL = u-wind tendency due to PBL and diffusive processes
63 C VT_PBL = v-wind tendency due to PBL and diffusive processes
64 C TT_PBL = temperature tendency due to PBL and diffusive processes
65 C QT_PBL = sp. humidity tendency due to PBL and diffusive processes
66 COMMON /PHYTEN/ TT_CNV, QT_CNV, TT_LSC, QT_LSC,
67 & TT_RSW, TT_RLW, TT_PBL, QT_PBL
68 _RL TT_CNV (NGP,NLEV,MAX_NO_THREADS)
69 _RL QT_CNV (NGP,NLEV,MAX_NO_THREADS)
70 _RL TT_LSC (NGP,NLEV,MAX_NO_THREADS)
71 _RL QT_LSC (NGP,NLEV,MAX_NO_THREADS)
72 _RL TT_RSW (NGP,NLEV,MAX_NO_THREADS)
73 _RL TT_RLW (NGP,NLEV,MAX_NO_THREADS)
74 c _RL UT_PBL (NGP,NLEV,MAX_NO_THREADS)
75 c _RL VT_PBL (NGP,NLEV,MAX_NO_THREADS)
76 _RL TT_PBL (NGP,NLEV,MAX_NO_THREADS)
77 _RL QT_PBL (NGP,NLEV,MAX_NO_THREADS)
78
79 C-- COMMON /FLUXES/ : Surface and upper boundary fluxes (updated in PHYPAR)
80 C PRECNV = convective precipitation [g/(m^2 s)]
81 C PRECLS = large-scale precipitation [g/(m^2 s)]
82 C CBMF = cloud-base mass flux
83 C TSR = top-of-atm. shortwave radiation (downward)
84 C SSR = surface shortwave radiation (downward)
85 C SLR = surface longwave radiation (upward)
86 C OLR = outgoing longwave radiation (upward)
87 C USTR = u-stress (1: land, 2: sea, 3: weighted average)
88 C VSTR = v-stress (1: land, 2: sea, 3: weighted average)
89 C SHF = sensible heat flux (1: land, 2: sea, 3: w. average)
90 C EVAP = evaporation [g/(m^2 s)] (1: land, 2: sea, 3: w. average)
91 C DRAG = surface Drag term (= Cd*Rho*|V|) (1:land, 2:sea, 3:w.aver)
92 COMMON /FLUXES/ PRECNV, PRECLS, CBMF, TSR, SSR, SLR, OLR,
93 & SHF, EVAP, SPEED0, DRAG
94 _RL PRECNV (NGP,MAX_NO_THREADS)
95 _RL PRECLS (NGP,MAX_NO_THREADS)
96 _RL CBMF (NGP,MAX_NO_THREADS)
97 _RL TSR (NGP,MAX_NO_THREADS)
98 _RL SSR (NGP,MAX_NO_THREADS)
99 _RL SLR (NGP,MAX_NO_THREADS)
100 _RL OLR (NGP,MAX_NO_THREADS)
101 c _RL USTR (NGP,3)
102 c _RL VSTR (NGP,3)
103 _RL SHF (NGP,3,MAX_NO_THREADS)
104 _RL EVAP (NGP,3,MAX_NO_THREADS)
105 _RL SPEED0 (NGP,MAX_NO_THREADS)
106 _RL DRAG (NGP,3,MAX_NO_THREADS)
107
108 C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
109 #endif /* ALLOW_AIM */

  ViewVC Help
Powered by ViewVC 1.1.22