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 |
C |
C |
15 |
C will be compiled. |
C will be compiled. |
16 |
C |
C |
17 |
|
|
18 |
|
C o Include/exclude code for AIM package |
19 |
|
#undef ALLOW_AIM |
20 |
|
|
21 |
C o Include/exclude code for GM/Redi parameterization |
C o Include/exclude code for GM/Redi parameterization |
22 |
#undef ALLOW_GMREDI |
#undef ALLOW_GMREDI |
23 |
|
|
24 |
C o Include/exclude code for KPP mixing scheme |
C o Include/exclude code for KPP mixing scheme |
25 |
#undef ALLOW_KPP |
#define ALLOW_KPP |
26 |
|
|
27 |
|
C o Shortwave heating as extra term in external_forcing.F |
28 |
|
#ifdef ALLOW_KPP |
29 |
|
#define SHORTWAVE_HEATING |
30 |
|
#endif |
31 |
|
|
32 |
|
C o Include/exclude code for Shapiro filters |
33 |
|
#define ALLOW_SHAP_FILT |
34 |
|
|
35 |
C o Include/exclude code for C-D grid method of integrating the |
C o Include/exclude code for C-D grid method of integrating the |
36 |
C coriolis terms |
C coriolis terms |
37 |
#undef INCLUDE_CD_CODE |
#define INCLUDE_CD_CODE |
38 |
|
|
39 |
C o Include/exclude code for open-boundary conditions |
C o Include/exclude code for open-boundary conditions |
40 |
#undef ALLOW_OBCS |
#undef ALLOW_OBCS |
41 |
|
|
42 |
C o Include/exclude diagnostics package interface code |
C o Include/exclude diagnostics package interface code |
43 |
#define INCLUDE_DIAGNOSTICS_INTERFACE_CODE |
#define ALLOW_TIMEAVE |
44 |
|
|
45 |
C o Include/exclude latitude circle FFT filter |
C o Include/exclude zonal FFT filter code |
46 |
#undef INCLUDE_LAT_CIRC_FFT_FILTER_CODE |
#undef ALLOW_ZONAL_FILT |
47 |
|
|
48 |
C o Include/exclude temperature advection code |
C o Include/exclude temperature advection code |
49 |
#define INCLUDE_T_ADVECTION_CODE |
#define INCLUDE_T_ADVECTION_CODE |
113 |
C o Include/exclude phi_hyd calculation code |
C o Include/exclude phi_hyd calculation code |
114 |
#define INCLUDE_PHIHYD_CALCULATION_CODE |
#define INCLUDE_PHIHYD_CALCULATION_CODE |
115 |
|
|
|
C o Include/exclude prognostic variable shapiro filter code |
|
|
C Note - Shapiro filter of prognostics variables requires the |
|
|
C three steps "step forward including edges", filter, |
|
|
C "communicate edges". |
|
|
C If the filtering code is included then we do not use the |
|
|
C pipelined "step forward including edges" in S/R DYNAMICS. |
|
|
C Instead the three steps are performed before DYNAMICS one |
|
|
C after another in an un-pipelined fashion. |
|
|
#undef INCLUDE_SHAPIRO_FILTER_CODE |
|
|
#ifdef INCLUDE_SHAPIRO_FILTER_CODE |
|
|
#undef DO_PIPELINED_CORRECTION_STEP |
|
|
#endif |
|
|
#ifndef INCLUDE_SHAPIRO_FILTER_CODE |
|
|
#define DO_PIPELINED_CORRECTION_STEP |
|
|
#endif |
|
|
|
|
|
C o Include/exclude call to S/R FIND_RHO |
|
|
#define INCLUDE_FIND_RHO_CALL |
|
|
|
|
116 |
C o Include/exclude call to S/R CONVECT |
C o Include/exclude call to S/R CONVECT |
117 |
#define INCLUDE_CONVECT_CALL |
#define INCLUDE_CONVECT_CALL |
118 |
|
|
|
C o Include/exclude call to S/R CALC_ISOSLOPES |
|
|
#define INCLUDE_CALC_ISOSLOPES_CALL |
|
|
|
|
119 |
C o Include/exclude call to S/R CALC_DIFFUSIVITY |
C o Include/exclude call to S/R CALC_DIFFUSIVITY |
120 |
#define INCLUDE_CALC_DIFFUSIVITY_CALL |
#define INCLUDE_CALC_DIFFUSIVITY_CALL |
121 |
|
|
138 |
|
|
139 |
C o Execution environment support options |
C o Execution environment support options |
140 |
#include "CPP_EEOPTIONS.h" |
#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 |
|
|