/[MITgcm]/MITgcm/verification/hs94.cs-32x32x5/code/CPP_OPTIONS.h
ViewVC logotype

Annotation of /MITgcm/verification/hs94.cs-32x32x5/code/CPP_OPTIONS.h

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


Revision 1.3 - (hide annotations) (download)
Fri Jul 6 22:13:37 2001 UTC (22 years, 9 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint46k_post, checkpoint44e_post, checkpoint46n_post, checkpoint47e_post, checkpoint40pre5, release1_p12, release1_p10, release1_p11, release1_p16, release1_p17, release1_p14, release1_p15, checkpoint47j_post, checkpoint48c_post, checkpoint47c_post, release1_final_v1, checkpoint50e_post, release1_p13_pre, checkpoint45b_post, checkpoint50c_post, checkpoint46i_post, checkpoint47d_post, checkpoint48g_post, checkpoint51f_pre, release1_beta1, release1_p12_pre, checkpoint40pre2, checkpoint46j_pre, checkpoint48e_post, checkpoint51j_post, checkpoint48d_post, checkpoint50c_pre, release1-branch_tutorials, branch-exfmods-tag, checkpoint46c_post, checkpoint45a_post, checkpoint44g_post, branchpoint-genmake2, checkpoint45c_post, checkpoint46, checkpoint50h_post, checkpoint50d_pre, checkpoint48f_post, checkpoint47i_post, chkpt44a_pre, checkpoint51a_post, checkpoint44h_post, checkpoint45, checkpoint46e_post, release1_b1, checkpoint40pre7, checkpoint40pre6, checkpoint50e_pre, checkpoint46d_pre, checkpoint51c_post, checkpoint46c_pre, checkpoint43, checkpoint40, checkpoint41, checkpoint47d_pre, checkpoint47, checkpoint44, release1_p13, checkpoint48, checkpoint49, checkpoint47b_post, checkpoint44f_pre, checkpoint46l_post, checkpoint48i_post, checkpoint40pre9, checkpoint46g_post, checkpoint48h_post, chkpt44d_post, release1_p8, checkpoint43a-release1mods, release1_p9, release1-branch_branchpoint, checkpoint51e_post, checkpoint48b_post, checkpoint51, checkpoint50, checkpoint47h_post, checkpoint51b_post, checkpoint51f_post, checkpoint50b_post, checkpoint50d_post, checkpoint46l_pre, checkpoint47f_post, release1_p2, release1_p3, release1_p4, checkpoint51b_pre, release1_p6, release1_p7, checkpoint46a_post, checkpoint47g_post, checkpoint44b_post, chkpt44a_post, checkpoint44b_pre, checkpoint46h_post, checkpoint48d_pre, chkpt44c_post, release1_p1, checkpoint46m_post, checkpoint46j_post, checkpoint40pre4, checkpoint51h_pre, checkpoint46a_pre, checkpoint40pre3, checkpoint50g_post, checkpoint46g_pre, checkpoint50b_pre, release1_p5, checkpoint44e_pre, checkpoint51g_post, checkpoint46b_pre, checkpoint46e_pre, checkpoint46b_post, checkpoint46d_post, checkpoint40pre8, checkpoint50f_post, checkpoint42, checkpoint50f_pre, checkpoint51d_post, checkpoint48c_pre, checkpoint50a_post, release1-branch-end, checkpoint46h_pre, checkpoint44h_pre, release1_chkpt44d_post, chkpt44c_pre, checkpoint50i_post, checkpoint48a_post, checkpoint46f_post, checkpoint45d_post, checkpoint44f_post, checkpoint47a_post
Branch point for: branch-genmake2, release1, release1_coupled, release1_final, release1-branch, release1_50yr, branch-exfmods-curt
Changes since 1.2: +10 -2 lines
File MIME type: text/plain
fixed a Pb in kV with non flat topography ;
use the (standard) atmospheric constants (in PARAMS.h)

1 jmc 1.3 C $Header: /u/gcmpack/models/MITgcmUV/verification/hs94.cs-32x32x5/code/CPP_OPTIONS.h,v 1.2 2001/05/29 14:01:58 adcroft Exp $
2     C $Name: $
3 adcroft 1.2
4     C
5     C CPP flags controlling which code in included in the files that
6     C will be compiled.
7     C
8    
9     C o Include/exclude code for AIM package
10     #undef ALLOW_AIM
11    
12     C o Include/exclude code for GM/Redi parameterization
13     #undef ALLOW_GMREDI
14    
15     C o Include/exclude code for KPP mixing scheme
16     #undef ALLOW_KPP
17    
18     C o Shortwave heating as extra term in external_forcing.F
19     #ifdef ALLOW_KPP
20     #define SHORTWAVE_HEATING
21     #endif
22    
23     C o Include/exclude code for Shapiro filters
24     #define ALLOW_SHAP_FILT
25    
26     C o Include/exclude code for C-D grid method of integrating the
27     C coriolis terms
28     #undef INCLUDE_CD_CODE
29    
30     C o Include/exclude code for open-boundary conditions
31     #undef ALLOW_OBCS
32    
33     C o Include/exclude diagnostics package interface code
34     #define ALLOW_TIMEAVE
35    
36     C o Include/exclude zonal FFT filter code
37     #undef ALLOW_ZONAL_FILT
38    
39     C o Include/exclude temperature advection code
40     #define INCLUDE_T_ADVECTION_CODE
41     #ifdef INCLUDE_T_ADVECTION_CODE
42     #define _ADT(a)a
43     #endif
44     #ifndef INCLUDE_T_ADVECTION_CODE
45     #define _ADT(a)
46     #endif
47    
48     C o Include/exclude temperature diffusion code
49     #define INCLUDE_T_DIFFUSION_CODE
50     #ifdef INCLUDE_T_DIFFUSION_CODE
51     #define _LPT(a)a
52     #define _BHT(a)a
53     #endif
54     #ifndef INCLUDE_T_DIFFUSION_CODE
55     #define _LPT(a)
56     #define _BHT(a)
57     #endif
58    
59     C o Include/exclude temperature forcing code
60     #define INCLUDE_T_FORCING_CODE
61    
62     C o Include/exclude momentum advection code
63     #define INCLUDE_MOMENTUM_ADVECTION_CODE
64     #ifdef INCLUDE_MOMENTUM_ADVECTION_CODE
65     #define _ADM(a)a
66     #endif
67     #ifndef INCLUDE_MOMENTUM_ADVECTION_CODE
68     #define _ADM(a)
69     #endif
70    
71     C o Include/exclude laplacian viscosity code
72     #define INCLUDE_LP_MOMENTUM_DIFFUSION_CODE
73     #ifdef INCLUDE_LP_MOMENTUM_DIFFUSION_CODE
74     #define _LPM(a)a
75     #endif
76     #ifndef INCLUDE_LP_MOMENTUM_DIFFUSION_CODE
77     #define _LPM(a)
78     #endif
79    
80     C o Include/exclude biharmonic viscosity code
81     #define INCLUDE_BH_MOMENTUM_DIFFUSION_CODE
82     #ifdef INCLUDE_BH_MOMENTUM_DIFFUSION_CODE
83     #define _BHM(a)a
84     #endif
85     #ifndef INCLUDE_BH_MOMENTUM_DIFFUSION_CODE
86     #define _BHM(a)
87     #endif
88    
89     C o Include/exclude gradient of phy_hyd code
90     #define INCLUDE_GRADPH_CODE
91     #ifdef INCLUDE_GRADPH_CODE
92     #define _PHM(a)a
93     #endif
94     #ifndef INCLUDE_GRADPH_CODE
95     #define _PHM(a)
96     #endif
97    
98     C o Include/exclude momentum forcing code
99     #define INCLUDE_MOMENTUM_FORCING_CODE
100    
101     C o Include/exclude momentum eqn metric terms code
102     #define INCLUDE_MOMENTUM_METRIC_TERM_CODE
103    
104     C o Include/exclude phi_hyd calculation code
105     #define INCLUDE_PHIHYD_CALCULATION_CODE
106    
107     C o Include/exclude call to S/R CONVECT
108     #define INCLUDE_CONVECT_CALL
109    
110     C o Include/exclude call to S/R CALC_DIFFUSIVITY
111     #define INCLUDE_CALC_DIFFUSIVITY_CALL
112    
113     C o Allow nonHydrostatic code
114     #undef ALLOW_NONHYDROSTATIC
115    
116     C o Use "natural" boundary conditions for salinity
117     C instead of the "virtual salt flux"
118     #undef USE_NATURAL_BCS
119 jmc 1.3
120     C o Use "Exact Convervation" of fluid in Free-Surface formulation
121     C so that d/dt(eta) is exactly equal to - Div.Transport
122     #define EXACT_CONSERV
123    
124     C o Allow the use of Non-Linear Free-Surface formulation
125     C this implies that surface thickness (hFactors) vary with time
126     #undef NONLIN_FRSURF
127 adcroft 1.2
128     C o Use "OLD" UV discretisation near boundaries (*not* recommended)
129     C Note - only works with #undef NO_SLIP_LATERAL in calc_mom_rhs.F
130     C because the old code did not have no-slip BCs
131     #undef OLD_ADV_BCS
132    
133     C o Use "OLD" UV geometry on sphere (definately *NOT* recommended)
134     C Note - only works with #undef NO_SLIP_LATERAL in calc_mom_rhs.F
135     C because the old code did not have no-slip BCs
136     #undef OLD_UV_GEOMETRY
137    
138     C o Execution environment support options
139     #include "CPP_EEOPTIONS.h"
140    
141     C o Include/exclude code specific to the ECCO/SEALION version.
142     #undef INCLUDE_ECCO_PACKAGE
143     #ifdef INCLUDE_ECCO_PACKAGE
144     #include "ECCO_CPPOPTIONS.h"
145     #endif
146    

  ViewVC Help
Powered by ViewVC 1.1.22