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

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

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


Revision 1.19 - (hide annotations) (download)
Fri Sep 21 03:54:36 2001 UTC (22 years, 8 months ago) by cnh
Branch: MAIN
CVS Tags: checkpoint46n_post, checkpoint44e_post, checkpoint46l_post, checkpoint46g_pre, checkpoint46f_post, checkpoint44f_post, checkpoint46b_post, checkpoint43a-release1mods, checkpoint46l_pre, chkpt44d_post, release1_p1, release1_p2, release1_p3, release1_p4, release1_p5, release1_p6, release1_p7, checkpoint44e_pre, release1_b1, checkpoint43, release1_chkpt44d_post, checkpoint46d_pre, release1-branch_tutorials, checkpoint45d_post, checkpoint46j_pre, chkpt44a_post, checkpoint44h_pre, checkpoint46a_post, checkpoint46j_post, checkpoint46k_post, chkpt44c_pre, checkpoint45a_post, ecco_c44_e19, ecco_c44_e18, ecco_c44_e17, ecco_c44_e16, checkpoint44g_post, checkpoint46e_pre, checkpoint45b_post, checkpoint46b_pre, release1-branch-end, release1_final_v1, checkpoint46c_pre, checkpoint46, checkpoint44b_post, checkpoint46h_pre, checkpoint46m_post, checkpoint46a_pre, checkpoint45c_post, ecco_ice1, checkpoint44h_post, checkpoint46g_post, ecco_c44_e22, ecco_c44_e25, chkpt44a_pre, checkpoint46i_post, ecco_c44_e23, ecco_c44_e20, ecco_c44_e21, ecco_c44_e24, checkpoint46c_post, ecco-branch-mod1, ecco-branch-mod2, ecco-branch-mod3, ecco-branch-mod4, ecco-branch-mod5, checkpoint46e_post, release1_beta1, checkpoint44b_pre, checkpoint42, checkpoint41, checkpoint47, checkpoint44, checkpoint45, checkpoint46h_post, chkpt44c_post, checkpoint44f_pre, checkpoint46d_post, release1-branch_branchpoint
Branch point for: c24_e25_ice, release1_final, release1-branch, release1, ecco-branch, release1_coupled
Changes since 1.18: +7 -3 lines
File MIME type: text/plain
Starting to bring comments up to date and format comments
for document extraction of "prototypes".

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

  ViewVC Help
Powered by ViewVC 1.1.22