| 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 |
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 |
C CPP flags controlling which code in included in the files that |
| 19 |
C will be compiled. |
C will be compiled. |
| 20 |
C |
CEOP |
| 21 |
|
|
| 22 |
|
C o Include/exclude code for AIM package |
| 23 |
|
#undef ALLOW_AIM |
| 24 |
|
|
| 25 |
C o Include/exclude code for GM/Redi parameterization |
C o Include/exclude code for GM/Redi parameterization |
| 26 |
#undef ALLOW_GMREDI |
#undef ALLOW_GMREDI |
| 33 |
#define SHORTWAVE_HEATING |
#define SHORTWAVE_HEATING |
| 34 |
#endif |
#endif |
| 35 |
|
|
| 36 |
|
C o Include/exclude code for Shapiro filters |
| 37 |
|
#define ALLOW_SHAP_FILT |
| 38 |
|
|
| 39 |
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 |
| 40 |
C coriolis terms |
C coriolis terms |
| 41 |
#define INCLUDE_CD_CODE |
#define INCLUDE_CD_CODE |
| 44 |
#undef ALLOW_OBCS |
#undef ALLOW_OBCS |
| 45 |
|
|
| 46 |
C o Include/exclude diagnostics package interface code |
C o Include/exclude diagnostics package interface code |
| 47 |
#define INCLUDE_DIAGNOSTICS_INTERFACE_CODE |
#define ALLOW_TIMEAVE |
| 48 |
|
|
| 49 |
C o Include/exclude latitude circle FFT filter |
C o Include/exclude zonal FFT filter code |
| 50 |
#undef INCLUDE_LAT_CIRC_FFT_FILTER_CODE |
#undef ALLOW_ZONAL_FILT |
| 51 |
|
|
| 52 |
C o Include/exclude temperature advection code |
C o Include/exclude temperature advection code |
| 53 |
#define INCLUDE_T_ADVECTION_CODE |
#define INCLUDE_T_ADVECTION_CODE |
| 117 |
C o Include/exclude phi_hyd calculation code |
C o Include/exclude phi_hyd calculation code |
| 118 |
#define INCLUDE_PHIHYD_CALCULATION_CODE |
#define INCLUDE_PHIHYD_CALCULATION_CODE |
| 119 |
|
|
|
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 |
|
|
|
|
| 120 |
C o Include/exclude call to S/R CONVECT |
C o Include/exclude call to S/R CONVECT |
| 121 |
#define INCLUDE_CONVECT_CALL |
#define INCLUDE_CONVECT_CALL |
| 122 |
|
|
|
C o Include/exclude call to S/R CALC_ISOSLOPES |
|
|
#define INCLUDE_CALC_ISOSLOPES_CALL |
|
|
|
|
| 123 |
C o Include/exclude call to S/R CALC_DIFFUSIVITY |
C o Include/exclude call to S/R CALC_DIFFUSIVITY |
| 124 |
#define INCLUDE_CALC_DIFFUSIVITY_CALL |
#define INCLUDE_CALC_DIFFUSIVITY_CALL |
| 125 |
|
|
| 130 |
C instead of the "virtual salt flux" |
C instead of the "virtual salt flux" |
| 131 |
#undef USE_NATURAL_BCS |
#undef USE_NATURAL_BCS |
| 132 |
|
|
| 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 |
|
|
| 141 |
C o Use "OLD" UV discretisation near boundaries (*not* recommended) |
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 |
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 |
C because the old code did not have no-slip BCs |
| 157 |
#include "ECCO_CPPOPTIONS.h" |
#include "ECCO_CPPOPTIONS.h" |
| 158 |
#endif |
#endif |
| 159 |
|
|
|
|
|
|
|
|