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

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

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

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

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.19.4.4

  ViewVC Help
Powered by ViewVC 1.1.22