/[MITgcm]/MITgcm/verification/advect_xz/code/CPP_OPTIONS.h
ViewVC logotype

Contents of /MITgcm/verification/advect_xz/code/CPP_OPTIONS.h

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


Revision 1.1 - (show annotations) (download)
Fri Sep 28 02:28:10 2001 UTC (22 years, 6 months ago) by adcroft
Branch: MAIN
CVS Tags: checkpoint46k_post, checkpoint44e_post, checkpoint46n_post, checkpoint51j_post, checkpoint47e_post, release1_p12, release1_p13, release1_p10, release1_p11, release1_p16, release1_p17, release1_p14, release1_p15, checkpoint47j_post, checkpoint47f_post, checkpoint47c_post, checkpoint50e_post, release1_p13_pre, checkpoint50c_post, checkpoint46i_post, checkpoint47d_post, checkpoint46f_post, checkpoint48d_pre, release1_beta1, checkpoint46d_pre, checkpoint48e_post, checkpoint46e_post, checkpoint48d_post, checkpoint50c_pre, release1-branch_tutorials, branch-exfmods-tag, checkpoint46c_post, checkpoint44g_post, branchpoint-genmake2, checkpoint48f_post, checkpoint45d_post, checkpoint47i_post, chkpt44a_pre, checkpoint48c_post, checkpoint44h_post, checkpoint46j_pre, checkpoint45b_post, checkpoint44b_pre, checkpoint51c_post, checkpoint46c_pre, checkpoint43, checkpoint47d_pre, checkpoint47, checkpoint44, checkpoint45, checkpoint48, checkpoint49, checkpoint44f_post, checkpoint47b_post, checkpoint44f_pre, checkpoint46l_post, release1_final_v1, checkpoint48i_post, checkpoint46l_pre, checkpoint51f_pre, release1_b1, checkpoint44b_post, checkpoint48h_post, checkpoint50d_pre, chkpt44d_post, checkpoint51e_post, checkpoint46h_pre, checkpoint51, checkpoint50, checkpoint47h_post, checkpoint51b_post, release1_p8, release1_p9, checkpoint50d_post, checkpoint46g_pre, release1_p2, release1_p3, release1_p4, checkpoint51b_pre, release1_p6, release1_p7, checkpoint46a_post, checkpoint47g_post, chkpt44a_post, chkpt44c_post, release1_p1, checkpoint46m_post, checkpoint46j_post, checkpoint51h_pre, checkpoint46a_pre, checkpoint50g_post, checkpoint45c_post, checkpoint50b_pre, release1_p5, checkpoint44e_pre, checkpoint51g_post, checkpoint46b_pre, checkpoint46e_pre, checkpoint46b_post, checkpoint51f_post, checkpoint46d_post, checkpoint48b_post, checkpoint50b_post, checkpoint46g_post, checkpoint43a-release1mods, release1_p12_pre, checkpoint45a_post, checkpoint50f_post, checkpoint50a_post, checkpoint50f_pre, checkpoint51d_post, checkpoint48c_pre, release1-branch_branchpoint, release1-branch-end, checkpoint46, checkpoint44h_pre, checkpoint51a_post, checkpoint46h_post, checkpoint50e_pre, checkpoint50i_post, release1_chkpt44d_post, checkpoint48g_post, chkpt44c_pre, checkpoint48a_post, checkpoint47a_post
Branch point for: branch-genmake2, release1, branch-exfmods-curt, release1_coupled, release1_final, release1-branch, release1_50yr
File MIME type: text/plain
Adding test of advection schemes with lopped cells. 2-D x-z

1 C $Header: /mymods/advect_xz/code/CPP_OPTIONS.h,v 1.1 2001/02/07 14:38:02$
2 C $Name: $
3
4 C
5 C CPP flags controlling which code in included in the files that
6 C will be compiled.
7 C
8
9 C o Include/exclude code for GM/Redi parameterization
10 #undef ALLOW_GMREDI
11
12 C o Include/exclude code for KPP mixing scheme
13 #undef ALLOW_KPP
14
15 C o Include/exclude code for C-D grid method of integrating the
16 C coriolis terms
17 #undef INCLUDE_CD_CODE
18
19 C o Include/exclude code for open-boundary conditions
20 #undef ALLOW_OBCS
21
22 C o Include/exclude diagnostics package interface code
23 #undef INCLUDE_DIAGNOSTICS_INTERFACE_CODE
24
25 C o Include/exclude latitude circle FFT filter
26 #undef INCLUDE_LAT_CIRC_FFT_FILTER_CODE
27
28 C o Include/exclude temperature advection code
29 #define INCLUDE_T_ADVECTION_CODE
30 #ifdef INCLUDE_T_ADVECTION_CODE
31 #define _ADT(a)a
32 #endif
33 #ifndef INCLUDE_T_ADVECTION_CODE
34 #define _ADT(a)
35 #endif
36
37 C o Include/exclude temperature diffusion code
38 #define INCLUDE_T_DIFFUSION_CODE
39 #ifdef INCLUDE_T_DIFFUSION_CODE
40 #define _LPT(a)a
41 #define _BHT(a)a
42 #endif
43 #ifndef INCLUDE_T_DIFFUSION_CODE
44 #define _LPT(a)
45 #define _BHT(a)
46 #endif
47
48 C o Include/exclude temperature forcing code
49 #define INCLUDE_T_FORCING_CODE
50
51 C o Include/exclude momentum advection code
52 #define INCLUDE_MOMENTUM_ADVECTION_CODE
53 #ifdef INCLUDE_MOMENTUM_ADVECTION_CODE
54 #define _ADM(a)a
55 #endif
56 #ifndef INCLUDE_MOMENTUM_ADVECTION_CODE
57 #define _ADM(a)
58 #endif
59
60 C o Include/exclude laplacian viscosity code
61 #define INCLUDE_LP_MOMENTUM_DIFFUSION_CODE
62 #ifdef INCLUDE_LP_MOMENTUM_DIFFUSION_CODE
63 #define _LPM(a)a
64 #endif
65 #ifndef INCLUDE_LP_MOMENTUM_DIFFUSION_CODE
66 #define _LPM(a)
67 #endif
68
69 C o Include/exclude biharmonic viscosity code
70 #define INCLUDE_BH_MOMENTUM_DIFFUSION_CODE
71 #ifdef INCLUDE_BH_MOMENTUM_DIFFUSION_CODE
72 #define _BHM(a)a
73 #endif
74 #ifndef INCLUDE_BH_MOMENTUM_DIFFUSION_CODE
75 #define _BHM(a)
76 #endif
77
78 C o Include/exclude gradient of phy_hyd code
79 #define INCLUDE_GRADPH_CODE
80 #ifdef INCLUDE_GRADPH_CODE
81 #define _PHM(a)a
82 #endif
83 #ifndef INCLUDE_GRADPH_CODE
84 #define _PHM(a)
85 #endif
86
87 C o Include/exclude momentum forcing code
88 #define INCLUDE_MOMENTUM_FORCING_CODE
89
90 C o Include/exclude momentum eqn metric terms code
91 #define INCLUDE_MOMENTUM_METRIC_TERM_CODE
92
93 C o Include/exclude phi_hyd calculation code
94 #define INCLUDE_PHIHYD_CALCULATION_CODE
95
96 C o Include/exclude prognostic variable shapiro filter code
97 C Note - Shapiro filter of prognostics variables requires the
98 C three steps "step forward including edges", filter,
99 C "communicate edges".
100 C If the filtering code is included then we do not use the
101 C pipelined "step forward including edges" in S/R DYNAMICS.
102 C Instead the three steps are performed before DYNAMICS one
103 C after another in an un-pipelined fashion.
104 #undef INCLUDE_SHAPIRO_FILTER_CODE
105 #ifdef INCLUDE_SHAPIRO_FILTER_CODE
106 #undef DO_PIPELINED_CORRECTION_STEP
107 #endif
108 #ifndef INCLUDE_SHAPIRO_FILTER_CODE
109 #define DO_PIPELINED_CORRECTION_STEP
110 #endif
111
112 C o Include/exclude call to S/R FIND_RHO
113 #define INCLUDE_FIND_RHO_CALL
114
115 C o Include/exclude call to S/R CONVECT
116 #define INCLUDE_CONVECT_CALL
117
118 C o Include/exclude call to S/R CALC_ISOSLOPES
119 #define INCLUDE_CALC_ISOSLOPES_CALL
120
121 C o Include/exclude call to S/R CALC_DIFFUSIVITY
122 #define INCLUDE_CALC_DIFFUSIVITY_CALL
123
124 C o Allow nonHydrostatic code
125 #undef ALLOW_NONHYDROSTATIC
126
127 C o Use "natural" boundary conditions for salinity
128 C instead of the "virtual salt flux"
129 #undef USE_NATURAL_BCS
130
131 C o Use "OLD" UV discretisation near boundaries (*not* recommended)
132 C Note - only works with #undef NO_SLIP_LATERAL in calc_mom_rhs.F
133 C because the old code did not have no-slip BCs
134 #undef OLD_ADV_BCS
135
136 C o Use "OLD" UV geometry on sphere (definately *NOT* recommended)
137 C Note - only works with #undef NO_SLIP_LATERAL in calc_mom_rhs.F
138 C because the old code did not have no-slip BCs
139 #undef OLD_UV_GEOMETRY
140
141 C o Execution environment support options
142 #include "CPP_EEOPTIONS.h"

  ViewVC Help
Powered by ViewVC 1.1.22