/[MITgcm]/MITgcm/verification/natl_box/code/CPP_OPTIONS.h
ViewVC logotype

Annotation of /MITgcm/verification/natl_box/code/CPP_OPTIONS.h

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


Revision 1.5 - (hide annotations) (download)
Tue May 29 14:02:00 2001 UTC (22 years, 10 months ago) by adcroft
Branch: MAIN
CVS Tags: checkpoint46n_post, checkpoint47e_post, checkpoint46l_post, checkpoint46g_pre, checkpoint47c_post, release1_p13_pre, checkpoint50c_post, checkpoint46f_post, checkpoint48e_post, checkpoint50c_pre, checkpoint44f_post, checkpoint46b_post, checkpoint43a-release1mods, checkpoint48c_post, release1_p13, checkpoint40pre3, checkpoint40pre1, checkpoint40pre7, checkpoint40pre6, checkpoint48i_post, checkpoint40pre9, checkpoint40pre8, checkpoint46l_pre, checkpoint50d_pre, chkpt44d_post, checkpoint51, release1_p8, release1_p9, checkpoint50d_post, release1_p1, release1_p2, release1_p3, release1_p4, release1_p5, release1_p6, release1_p7, checkpoint50b_pre, checkpoint44e_pre, checkpoint51f_post, release1_b1, checkpoint48b_post, checkpoint43, checkpoint51d_post, checkpoint48c_pre, release1_chkpt44d_post, checkpoint48d_pre, checkpoint51j_post, checkpoint47i_post, checkpoint47d_post, checkpoint46d_pre, checkpoint40pre2, checkpoint48d_post, release1-branch_tutorials, checkpoint48f_post, checkpoint45d_post, checkpoint46j_pre, chkpt44a_post, checkpoint44h_pre, checkpoint48h_post, checkpoint40pre4, checkpoint51b_pre, checkpoint46a_post, checkpoint47g_post, chkpt44c_post, checkpoint46j_post, checkpoint51h_pre, checkpoint46k_post, checkpoint46b_pre, chkpt44c_pre, checkpoint45a_post, checkpoint50f_post, checkpoint50a_post, checkpoint50f_pre, checkpoint44e_post, release1_p12, release1_p10, release1_p11, release1_p16, release1_p17, release1_p14, release1_p15, checkpoint47j_post, checkpoint47a_post, branch-exfmods-tag, checkpoint44g_post, branchpoint-genmake2, checkpoint46e_pre, checkpoint45b_post, release1-branch-end, release1_final_v1, checkpoint51b_post, release1_p12_pre, checkpoint46c_pre, checkpoint46, checkpoint47b_post, checkpoint44b_post, checkpoint46h_pre, checkpoint46m_post, checkpoint46a_pre, checkpoint50g_post, checkpoint45c_post, checkpoint44h_post, checkpoint46g_post, checkpoint51c_post, checkpoint50h_post, checkpoint50e_pre, checkpoint50i_post, checkpoint48a_post, checkpoint40pre5, checkpoint47f_post, checkpoint50e_post, chkpt44a_pre, checkpoint46i_post, checkpoint46c_post, checkpoint46e_post, release1_beta1, checkpoint51e_post, checkpoint44b_pre, checkpoint42, checkpoint40, checkpoint41, checkpoint47d_pre, checkpoint47, checkpoint44, checkpoint45, checkpoint48, checkpoint49, checkpoint46h_post, checkpoint50, checkpoint51f_pre, checkpoint47h_post, checkpoint44f_pre, checkpoint51g_post, checkpoint46d_post, checkpoint50b_post, release1-branch_branchpoint, checkpoint51a_post, checkpoint48g_post
Branch point for: branch-exfmods-curt, release1_coupled, release1_final, release1-branch, branch-genmake2, release1, release1_50yr
Changes since 1.4: +9 -1 lines
File MIME type: text/plain
Merge from branch pre38:
 o essential mods for cubed sphere
 o debugged atmosphere, dynamcis + physics (aim)
 o new packages (mom_vecinv, mom_fluxform, ...)

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

  ViewVC Help
Powered by ViewVC 1.1.22