1 |
C $Header$ |
C $Header$ |
2 |
C $Name$ |
C $Name$ |
3 |
|
|
4 |
#include "PACKAGES_CONFIG.h" |
#ifndef CPP_OPTIONS_H |
5 |
|
#define CPP_OPTIONS_H |
6 |
|
|
7 |
C CPP flags controlling particular source code features |
C CPP flags controlling particular source code features |
8 |
|
|
|
C o Include/exclude code for C-D grid method of integrating the |
|
|
C coriolis terms |
|
|
#define INCLUDE_CD_CODE |
|
|
|
|
9 |
C o Include/exclude temperature forcing code |
C o Include/exclude temperature forcing code |
10 |
C#define INCLUDE_T_FORCING_CODE |
C#define INCLUDE_T_FORCING_CODE |
11 |
|
|
30 |
C o Include/exclude call to S/R CALC_DIFFUSIVITY |
C o Include/exclude call to S/R CALC_DIFFUSIVITY |
31 |
#define INCLUDE_CALC_DIFFUSIVITY_CALL |
#define INCLUDE_CALC_DIFFUSIVITY_CALL |
32 |
|
|
33 |
C o Allow nonHydrostatic code |
C o Include/exclude nonHydrostatic code |
34 |
#define ALLOW_NONHYDROSTATIC |
#undef ALLOW_NONHYDROSTATIC |
35 |
|
|
36 |
C o Include pressure loading code |
C o Include pressure loading code |
37 |
#define ATMOSPHERIC_LOADING |
#define ATMOSPHERIC_LOADING |
38 |
|
|
|
C o Use "natural" boundary conditions for salinity |
|
|
C instead of the "virtual salt flux" |
|
|
#undef USE_NATURAL_BCS |
|
|
|
|
39 |
C o Use "Exact Convervation" of fluid in Free-Surface formulation |
C o Use "Exact Convervation" of fluid in Free-Surface formulation |
40 |
C so that d/dt(eta) is exactly equal to - Div.Transport |
C so that d/dt(eta) is exactly equal to - Div.Transport |
41 |
#define EXACT_CONSERV |
#define EXACT_CONSERV |
42 |
|
|
43 |
C o Allow the use of Non-Linear Free-Surface formulation |
C o Allow the use of Non-Linear Free-Surface formulation |
44 |
C this implies that surface thickness (hFactors) vary with time |
C this implies that surface thickness (hFactors) vary with time |
45 |
#define NONLIN_FRSURF |
#undef NONLIN_FRSURF |
46 |
|
|
47 |
C o Use "OLD" UV discretisation near boundaries (*not* recommended) |
C o Use "OLD" UV discretisation near boundaries (*not* recommended) |
48 |
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 |
62 |
#ifdef INCLUDE_ECCO_PACKAGE |
#ifdef INCLUDE_ECCO_PACKAGE |
63 |
#include "ECCO_CPPOPTIONS.h" |
#include "ECCO_CPPOPTIONS.h" |
64 |
#endif |
#endif |
65 |
|
|
66 |
|
#endif /* CPP_OPTIONS_H */ |
67 |
|
|