/[MITgcm]/MITgcm/verification/obcs_ctrl/code_ad/ECCO_CPPOPTIONS.h
ViewVC logotype

Annotation of /MITgcm/verification/obcs_ctrl/code_ad/ECCO_CPPOPTIONS.h

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


Revision 1.2 - (hide annotations) (download)
Thu Aug 9 18:15:57 2012 UTC (11 years, 9 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint64a, checkpoint64c, checkpoint64b, checkpoint64d, checkpoint63r, checkpoint63s, checkpoint64
Changes since 1.1: +25 -26 lines
File MIME type: text/plain
- reccord when this file is included (define ECCO_CPPOPTIONS_H)
- remove the most obvious obsolete features (e.g., #define ALLOW_COST not
  allowed since Oct 2003 in any option-file except in PACKAGES_CONFIG.h)

1 jmc 1.2 C $Header: /u/gcmpack/MITgcm/verification/obcs_ctrl/code_ad/ECCO_CPPOPTIONS.h,v 1.1 2011/04/20 19:17:39 mmazloff Exp $
2 mmazloff 1.1 C $Name: $
3    
4 jmc 1.2 #ifndef ECCO_CPPOPTIONS_H
5     #define ECCO_CPPOPTIONS_H
6    
7     C-- Collect here, in a single option-file, options to control which optional
8     C features to compile in packages AUTODIFF, COST, CTRL, ECCO, CAL and EXF.
9     C If used, this option-file needs to be directly included in CPP_OPTIONS.h
10     C Although this method, inherited from ECCO setup, has been traditionally
11     C used for all adjoint built, work is in progess to allow to use the
12     C standard metod (each of the above pkg get its own options from its
13     C specific option-file) also for adjoint built.
14    
15 mmazloff 1.1 C ********************************************************************
16     C *** ECCO Package ***
17     C ********************************************************************
18    
19     cph#define ALLOW_ECCO_FORWARD_RUN
20     #define ALLOW_ECCO_OPTIMIZATION
21    
22     C >>> Do a long protocol.
23     #undef ECCO_VERBOSE
24    
25     C ********************************************************************
26     C *** Adjoint Support Package ***
27     C ********************************************************************
28    
29     C o Include/exclude code in order to be able to automatically
30 jmc 1.2
31 mmazloff 1.1 #define ALLOW_AUTODIFF_TAMC
32 jmc 1.2
33 mmazloff 1.1 C >>> Checkpointing as handled by TAMC
34     #define ALLOW_TAMC_CHECKPOINTING
35 jmc 1.2
36 mmazloff 1.1 C extend to 4-level checkpointing
37     #undef AUTODIFF_4_LEVEL_CHECKPOINT
38 jmc 1.2
39 mmazloff 1.1 C >>> Extract adjoint state
40     #define ALLOW_AUTODIFF_MONITOR
41 jmc 1.2
42 mmazloff 1.1 C o use divided adjoint to split adjoint computations
43     #undef ALLOW_DIVIDED_ADJOINT
44 jmc 1.2
45 mmazloff 1.1 C o TAMC compatible subroutine parameter list
46     #undef AUTODIFF_TAMC_COMPATIBILITY
47    
48     C ********************************************************************
49     C *** Calendar Package ***
50     C ********************************************************************
51 jmc 1.2
52 mmazloff 1.1 C CPP flags controlling which code is included in the files that
53     C will be compiled.
54    
55     CPH >>>>>> THERE ARE NO MORE CAL OPTIONS TO BE SET <<<<<<
56    
57     C ********************************************************************
58     C *** Cost function Package ***
59     C ********************************************************************
60 jmc 1.2
61 mmazloff 1.1 C >>> Use the EGM-96 geoid error covariance.
62     # undef ALLOW_EGM96_ERROR_COV
63     # undef ALLOW_READ_EGM_DATA
64     C >>> Use NSCAT data.
65     # undef ALLOW_NSCAT_DATA
66     C >>> Cost function contributions
67    
68     # undef ALLOW_HFLUX_COST_CONTRIBUTION
69     # undef ALLOW_SFLUX_COST_CONTRIBUTION
70     # undef ALLOW_USTRESS_COST_CONTRIBUTION
71     # undef ALLOW_VSTRESS_COST_CONTRIBUTION
72    
73     # undef ALLOW_ATEMP_COST_CONTRIBUTION
74     # undef ALLOW_AQH_COST_CONTRIBUTION
75     # undef ALLOW_UWIND_COST_CONTRIBUTION
76     # undef ALLOW_VWIND_COST_CONTRIBUTION
77     # undef ALLOW_PRECIP_COST_CONTRIBUTION
78     # undef ALLOW_SNOWPRECIP_COST_CONTRIBUTION
79     # undef ALLOW_SWDOWN_COST_CONTRIBUTION
80     # undef ALLOW_LWDOWN_COST_CONTRIBUTION
81     # undef ALLOW_EVAP_COST_CONTRIBUTION
82     # undef ALLOW_APRESSURE_COST_CONTRIBUTION
83     # undef ALLOW_RUNOFF_COST_CONTRIBUTION
84    
85     # define ALLOW_THETA0_COST_CONTRIBUTION
86     # undef ALLOW_SALT0_COST_CONTRIBUTION
87     # define ALLOW_THETA_COST_CONTRIBUTION
88     # undef ALLOW_SALT_COST_CONTRIBUTION
89     # undef ALLOW_SST_COST_CONTRIBUTION
90     # undef ALLOW_SSS_COST_CONTRIBUTION
91    
92     # undef ALLOW_SSH_MEAN_COST_CONTRIBUTION
93     # undef ALLOW_SSH_TPANOM_COST_CONTRIBUTION
94     # undef ALLOW_SSH_ERSANOM_COST_CONTRIBUTION
95     # undef ALLOW_SPH_PROJECTION
96     # if (defined (ALLOW_SSH_MEAN_COST_CONTRIBUTION) || \
97     defined (ALLOW_SSH_TPANOM_COST_CONTRIBUTION) || \
98     defined (ALLOW_SSH_ERSANOM_COST_CONTRIBUTION))
99     # define ALLOW_SSH_COST_CONTRIBUTION
100     # endif
101    
102     # undef ALLOW_CTDT_COST_CONTRIBUTION
103     # undef ALLOW_CTDS_COST_CONTRIBUTION
104     # undef ALLOW_XBT_COST_CONTRIBUTION
105     # undef ALLOW_COST_ATLANTIC
106    
107     c >>> Open boundaries
108     c >>> Make sure that ALLOW_OBCS is defined
109     # define ALLOW_OBCSN_COST_CONTRIBUTION
110     # define ALLOW_OBCSS_COST_CONTRIBUTION
111     # define ALLOW_OBCSW_COST_CONTRIBUTION
112     # define ALLOW_OBCSE_COST_CONTRIBUTION
113     # if (defined (ALLOW_OBCSN_COST_CONTRIBUTION) || \
114     defined (ALLOW_OBCSS_COST_CONTRIBUTION) || \
115     defined (ALLOW_OBCSW_COST_CONTRIBUTION) || \
116     defined (ALLOW_OBCSE_COST_CONTRIBUTION))
117     # define ALLOW_OBCS_COST_CONTRIBUTION
118     # endif
119 jmc 1.2 CMM
120 mmazloff 1.1 # undef ALLOW_IESTAU_COST_CONTRIBUTION
121     c >>> Sea-ice volume
122     # undef ALLOW_COST_ICE
123    
124     c >>> Sea-ice misfit to obs
125     # undef ALLOW_SEAICE_COST_SMR_AREA
126    
127     C ********************************************************************
128     C *** Control vector Package ***
129     C ********************************************************************
130 jmc 1.2
131 mmazloff 1.1 #define ALLOW_NONDIMENSIONAL_CONTROL_IO
132     #undef ALLOW_TAMC_SINGLEPREC_COMLEV
133    
134     C >>> Initial values.
135     #define ALLOW_THETA0_CONTROL
136     #undef ALLOW_SALT0_CONTROL
137    
138     C >>> Initial seaice
139     #undef ALLOW_SIAREA_CONTROL
140     #undef ALLOW_SIHEFF_CONTROL
141    
142     C >>> Surface fluxes.
143     #undef ALLOW_HFLUX_CONTROL
144     #undef ALLOW_SFLUX_CONTROL
145     #undef ALLOW_USTRESS_CONTROL
146     #undef ALLOW_VSTRESS_CONTROL
147    
148     C >>> Atmospheric state.
149     #undef ALLOW_ATEMP_CONTROL
150     #undef ALLOW_AQH_CONTROL
151     #undef ALLOW_PRECIP_CONTROL
152     #undef ALLOW_SNOWPRECIP_CONTROL
153     #undef ALLOW_SWDOWN_CONTROL
154     #undef ALLOW_LWDOWN_CONTROL
155     #undef ALLOW_UWIND_CONTROL
156     #undef ALLOW_VWIND_CONTROL
157     #undef ALLOW_EVAP_CONTROL
158     #undef ALLOW_APRESSURE_CONTROL
159     #undef ALLOW_RUNOFF_CONTROL
160    
161     C >>> Radiation
162     #undef ALLOW_SWFLUX_CONTROL
163     #undef ALLOW_LWFLUX_CONTROL
164    
165     C >>> seaice init. conditions
166     #undef ALLOW_SIAREA_CONTROL
167     #undef ALLOW_SIHEFF_CONTROL
168     #undef ALLOW_SIHSNOW_CONTROL
169    
170     C >>> Open boundaries
171     c >>> Make sure that ALLOW_OBCS is defined
172     #define ALLOW_OBCSN_CONTROL
173     #define ALLOW_OBCSS_CONTROL
174     #define ALLOW_OBCSW_CONTROL
175     #define ALLOW_OBCSE_CONTROL
176     #if (defined (ALLOW_OBCSN_CONTROL) || \
177     defined (ALLOW_OBCSS_CONTROL) || \
178     defined (ALLOW_OBCSW_CONTROL) || \
179     defined (ALLOW_OBCSE_CONTROL))
180     # define ALLOW_OBCS_CONTROL
181     #endif
182     #define ALLOW_OBCS_CONTROL_MODES
183    
184     C ********************************************************************
185     C *** External forcing Package ***
186     C ********************************************************************
187    
188     C Do more printout for the protocol file than usual.
189     #undef EXF_VERBOSE
190    
191     C Bulk formulae related flags.
192     #undef ALLOW_BULK_LARGYEAG04
193     #undef ALLOW_ATM_TEMP
194     #undef ALLOW_ATM_WIND
195     #undef ALLOW_BULKFORMULAE
196     #undef ALLOW_DOWNWARD_RADIATION
197     #undef ALLOW_RUNOFF
198     #undef EXF_READ_EVAP
199    
200     C Relaxation to monthly climatologies.
201     #undef ALLOW_CLIMSST_RELAXATION
202     #undef ALLOW_CLIMSSS_RELAXATION
203 jmc 1.2
204     C ********************************************************************
205     #endif /* ECCO_CPPOPTIONS_H */

  ViewVC Help
Powered by ViewVC 1.1.22