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

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

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


Revision 1.1.2.1 - (show annotations) (download)
Tue Feb 26 16:05:19 2002 UTC (22 years, 3 months ago) by adcroft
Branch: release1
CVS Tags: release1_p12, release1_p13, release1_p10, release1_p16, release1_p17, release1_p14, release1_p15, release1_p13_pre, release1_p11, release1_p8, release1_p9, release1_p2, release1_p3, release1_p4, release1_p6, release1_p7, release1_p1, release1_p5, release1_p12_pre, release1_chkpt44d_post
Branch point for: release1_50yr
Changes since 1.1: +2 -2 lines
File MIME type: text/plain
Merging changes on MAIN between checkpoint43 and checkpoint43a-release1mods
Command: cvs -q update -jcheckpoint43 -jcheckpoint43a-release1mods -d -P

These changes are most of the changes between c43 and c44 except those
that occured after "12:45 11 Jan 2002". As far as I can tell it is
checkpoint43 with the following mods:

  o fix bug in mom_vi_del2uv
  o select when filters are applied ; add options to zonal_filter (data.zonfilt)  o gmredi: fix Pb in the adiabatic form ; add options (.e.g. Bolus advection)
  o update AIM experiments (NCEP input files)
  o improve and extend diagnostics (Monitor, TimeAve with NonLin-FrSurf)
  o added some stuff for AD
  o Jamar wet-points

This update does not contain the following mods that are in checkpoint44

  o bug fix in pkg/generic_advdiff/
    - thread related bug, bi,bj arguments in vertical advection routines
  o some changes to pkg/autodiff, pkg/cost, pkg/exf, pkg/ecco,
    verification/carbon and model/src/ related to adjoint
  o some new Matlab scripts for diagnosing model density
    - utils/matlab/dens_poly3.m and ini_poly3.m

The list of exclusions is accurate based on a "cvs diff". The list of
inclusions is based on the record in doc/tag-index which may not be complete.

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

  ViewVC Help
Powered by ViewVC 1.1.22