/[MITgcm]/MITgcm/verification/matrix_example/code/config_check.F
ViewVC logotype

Contents of /MITgcm/verification/matrix_example/code/config_check.F

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


Revision 1.3 - (show annotations) (download)
Wed Apr 20 18:30:58 2005 UTC (19 years ago) by spk
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +1 -1 lines
FILE REMOVED
Removing files that are now incorporated in main code tree

1 C $Header: /u/gcmpack/MITgcm/verification/matrix_example/code/config_check.F,v 1.2 2005/04/19 18:44:50 edhill Exp $
2 C $Name: $
3
4 #include "PACKAGES_CONFIG.h"
5 #include "CPP_OPTIONS.h"
6
7 CBOP
8 C !ROUTINE: CONFIG_CHECK
9 C !INTERFACE:
10 SUBROUTINE CONFIG_CHECK( myThid )
11 C !DESCRIPTION: \bv
12 C *=========================================================*
13 C | SUBROUTINE CONFIG_CHECK
14 C | o Check model parameter settings.
15 C *=========================================================*
16 C | This routine help to prevent the use of parameters
17 C | that are not compatible with the model configuration.
18 C *=========================================================*
19 C \ev
20
21 C !USES:
22 IMPLICIT NONE
23 C === Global variables ===
24 #include "SIZE.h"
25 #include "EEPARAMS.h"
26 #include "PARAMS.h"
27 c #include "GRID.h"
28
29 C !INPUT/OUTPUT PARAMETERS:
30 C === Routine arguments ===
31 C myThid - Number of this instances of CONFIG_CHECK
32 INTEGER myThid
33 CEndOfInterface
34
35 C !LOCAL VARIABLES:
36 C == Local variables ==
37 C msgBuf :: Informational/error meesage buffer
38 CHARACTER*(MAX_LEN_MBUF) msgBuf
39 CEOP
40
41 C- check that CPP option is "defined" when running-flag parameter is on:
42
43 #ifndef ALLOW_MNC
44 IF (useMNC) THEN
45 WRITE(msgBuf,'(2A)') '**WARNNING** ',
46 & 'CONFIG_CHECK: useMNC is TRUE and #undef ALLOW_MNC'
47 CALL PRINT_MESSAGE( msgBuf, errorMessageUnit,
48 & SQUEEZE_RIGHT , myThid)
49 ENDIF
50 #endif
51
52 #ifndef ALLOW_CD_CODE
53 IF (useCDscheme) THEN
54 WRITE(msgBuf,'(A)')
55 & 'CONFIG_CHECK: useCDscheme is TRUE and #undef ALLOW_CD_CODE'
56 CALL PRINT_ERROR( msgBuf , myThid)
57 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
58 ENDIF
59 IF (tauCD.NE.0.) THEN
60 WRITE(msgBuf,'(A)')
61 & 'CONFIG_CHECK: tauCD has been set but the cd_code package is',
62 & ' enabled'
63 CALL PRINT_ERROR( msgBuf , myThid)
64 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
65 ENDIF
66 #endif
67
68 #ifndef ALLOW_NONHYDROSTATIC
69 IF (nonHydrostatic) THEN
70 WRITE(msgBuf,'(A)')
71 & 'CONFIG_CHECK: #undef ALLOW_NONHYDROSTATIC and'
72 CALL PRINT_ERROR( msgBuf , myThid)
73 WRITE(msgBuf,'(A)')
74 & 'CONFIG_CHECK: nonHydrostatic is TRUE'
75 CALL PRINT_ERROR( msgBuf , myThid)
76 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
77 ENDIF
78 #endif
79
80 #ifndef ALLOW_ADAMSBASHFORTH_3
81 IF ( alph_AB.NE.UNSET_RL .OR. beta_AB.NE.UNSET_RL ) THEN
82 WRITE(msgBuf,'(2A)') 'CONFIG_CHECK: ',
83 & '#undef ALLOW_ADAMSBASHFORTH_3 but alph_AB,beta_AB'
84 CALL PRINT_ERROR( msgBuf , myThid)
85 WRITE(msgBuf,'(A,1P2E20.7)')
86 & 'CONFIG_CHECK: are set to:',alph_AB,beta_AB
87 CALL PRINT_ERROR( msgBuf , myThid)
88 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
89 ENDIF
90 #endif
91
92 #ifndef INCLUDE_IMPLVERTADV_CODE
93 IF ( momImplVertAdv ) THEN
94 WRITE(msgBuf,'(A)')
95 & 'CONFIG_CHECK: #undef INCLUDE_IMPLVERTADV_CODE'
96 CALL PRINT_ERROR( msgBuf , myThid)
97 WRITE(msgBuf,'(A)')
98 & 'CONFIG_CHECK: but momImplVertAdv is TRUE'
99 CALL PRINT_ERROR( msgBuf , myThid)
100 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
101 ENDIF
102 IF ( tempImplVertAdv ) THEN
103 WRITE(msgBuf,'(A)')
104 & 'CONFIG_CHECK: #undef INCLUDE_IMPLVERTADV_CODE'
105 CALL PRINT_ERROR( msgBuf , myThid)
106 WRITE(msgBuf,'(A)')
107 & 'CONFIG_CHECK: but tempImplVertAdv is TRUE'
108 CALL PRINT_ERROR( msgBuf , myThid)
109 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
110 ENDIF
111 IF ( saltImplVertAdv ) THEN
112 WRITE(msgBuf,'(A)')
113 & 'CONFIG_CHECK: #undef INCLUDE_IMPLVERTADV_CODE'
114 CALL PRINT_ERROR( msgBuf , myThid)
115 WRITE(msgBuf,'(A)')
116 & 'CONFIG_CHECK: but saltImplVertAdv is TRUE'
117 CALL PRINT_ERROR( msgBuf , myThid)
118 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
119 ENDIF
120 IF ( dTtracerLev(1).NE.dTtracerLev(Nr) .AND. implicitDiffusion
121 & .AND. ( saltStepping .OR. tempStepping .OR. usePTRACERS )
122 & ) THEN
123 WRITE(msgBuf,'(A)')
124 & 'CONFIG_CHECK: #undef INCLUDE_IMPLVERTADV_CODE'
125 CALL PRINT_ERROR( msgBuf , myThid)
126 WRITE(msgBuf,'(2A)') 'CONFIG_CHECK: ',
127 & 'but implicitDiffusion=T with non-uniform dTtracerLev'
128 CALL PRINT_ERROR( msgBuf , myThid)
129 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
130 ENDIF
131 #endif
132
133 #ifndef EXACT_CONSERV
134 IF (exactConserv) THEN
135 WRITE(msgBuf,'(A)')
136 & 'CONFIG_CHECK: #undef EXACT_CONSERV and'
137 CALL PRINT_ERROR( msgBuf , myThid)
138 WRITE(msgBuf,'(A)')
139 & 'CONFIG_CHECK: exactConserv is TRUE'
140 CALL PRINT_ERROR( msgBuf , myThid)
141 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
142 ENDIF
143 #endif
144
145 #ifndef NONLIN_FRSURF
146 IF (nonlinFreeSurf.NE.0) THEN
147 WRITE(msgBuf,'(A)')
148 & 'CONFIG_CHECK: #undef NONLIN_FRSURF and'
149 CALL PRINT_ERROR( msgBuf , myThid)
150 WRITE(msgBuf,'(A)')
151 & 'CONFIG_CHECK: nonlinFreeSurf is non-zero'
152 CALL PRINT_ERROR( msgBuf , myThid)
153 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
154 ENDIF
155 #endif
156
157 #ifndef NONLIN_FRSURF
158 IF (select_rStar .NE. 0) THEN
159 WRITE(msgBuf,'(A)')
160 & 'CONFIG_CHECK: rStar is part of NonLin-FS '
161 CALL PRINT_ERROR( msgBuf, myThid)
162 WRITE(msgBuf,'(A)')
163 & 'CONFIG_CHECK: ==> use #define NONLIN_FRSURF to use it'
164 CALL PRINT_ERROR( msgBuf, myThid)
165 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
166 ENDIF
167 #endif /* NONLIN_FRSURF */
168
169 #ifdef USE_NATURAL_BCS
170 WRITE(msgBuf,'(A)')
171 & 'CONFIG_CHECK: USE_NATURAL_BCS option has been replaced'
172 CALL PRINT_ERROR( msgBuf , myThid)
173 WRITE(msgBuf,'(A)')
174 & 'CONFIG_CHECK: by useRealFreshWaterFlux=TRUE in data file'
175 CALL PRINT_ERROR( msgBuf , myThid)
176 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
177 #endif
178
179 C o If pLoadFile is set, then we should make sure the corresponing
180 C code is being compiled
181 #ifndef ATMOSPHERIC_LOADING
182 IF (pLoadFile.NE.' ') THEN
183 WRITE(msgBuf,'(A)')
184 & 'CONFIG_CHECK: pLoadFile is set but you have not'
185 CALL PRINT_ERROR( msgBuf , myThid)
186 WRITE(msgBuf,'(A)')
187 & 'compiled the model with the pressure loading code.'
188 CALL PRINT_ERROR( msgBuf , myThid)
189 WRITE(msgBuf,'(A)')
190 & 'Re-compile with: #define ATMOSPHERIC_LOADING'
191 CALL PRINT_ERROR( msgBuf , myThid)
192 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
193 ENDIF
194 IF ( useRealFreshWaterFlux .AND. useThSIce ) THEN
195 WRITE(msgBuf,'(A)')
196 & 'CONFIG_CHECK: sIceLoad is computed but'
197 CALL PRINT_ERROR( msgBuf , myThid)
198 WRITE(msgBuf,'(A)')
199 & 'pressure loading code is not compiled.'
200 CALL PRINT_ERROR( msgBuf , myThid)
201 WRITE(msgBuf,'(A)')
202 & 'Re-compile with: #define ATMOSPHERIC_LOADING'
203 CALL PRINT_ERROR( msgBuf , myThid)
204 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
205 ENDIF
206 #endif
207
208 #ifndef ALLOW_GENERIC_ADVDIFF
209 IF ( tempStepping .OR. saltStepping ) THEN
210 WRITE(msgBuf,'(2A)')
211 & 'CONFIG_CHECK: cannot step forward Temp or Salt',
212 & ' without pkg/generic_advdiff'
213 CALL PRINT_ERROR( msgBuf , 1)
214 WRITE(msgBuf,'(A)')
215 & 'Re-compile with pkg "generic_advdiff" in packages.conf'
216 CALL PRINT_ERROR( msgBuf , 1)
217 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
218 ENDIF
219 #endif
220
221 C o If taveFreq is finite, then we must make sure the diagnostics
222 C code is being compiled
223 #ifndef ALLOW_TIMEAVE
224 IF (taveFreq.NE.0.) THEN
225 WRITE(msgBuf,'(A)')
226 & 'CONFIG_CHECK: taveFreq <> 0 but pkg/timeave is not compiled'
227 CALL PRINT_ERROR( msgBuf , 1)
228 WRITE(msgBuf,'(A)')
229 & 'Re-compile with pkg "timeave" in packages.conf'
230 CALL PRINT_ERROR( msgBuf , 1)
231 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
232 ENDIF
233 #endif
234
235 C o If calendarDumps is set, pkg/cal is required
236 #ifndef ALLOW_CAL
237 IF (calendarDumps) THEN
238 WRITE(msgBuf,'(A)')
239 & 'CONFIG_CHECK: calendarDumps is set but pkg/cal is not compiled'
240 CALL PRINT_ERROR( msgBuf , 1)
241 WRITE(msgBuf,'(A)')
242 & 'Re-compile with pkg "cal" in packages.conf'
243 CALL PRINT_ERROR( msgBuf , 1)
244 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
245 ENDIF
246 #endif
247
248 #ifndef ALLOW_MATRIX
249 IF (useMATRIX) THEN
250 WRITE(msgBuf,'(A)')
251 & 'CONFIG_CHECK: useMATRIX is TRUE and #undef ALLOW_MATRIX'
252 CALL PRINT_ERROR( msgBuf , myThid)
253 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
254 ENDIF
255 #endif
256
257 C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
258
259 C- check parameter consistency :
260
261 IF ( ( Olx.LT.3 .OR. Oly.LT.3 ) .AND.
262 & ( viscC4leith.NE.0. .OR. viscA4Grid.NE.0.
263 & .OR. viscA4D.NE.0. .OR. viscA4Z.NE.0. ) ) THEN
264 WRITE(msgBuf,'(A,A)')
265 & 'CONFIG_CHECK: cannot use Biharmonic Visc. (viscA4) with',
266 & ' overlap (Olx,Oly) smaller than 3'
267 CALL PRINT_ERROR( msgBuf , myThid)
268 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
269 ENDIF
270
271 IF ( rigidLid .AND. implicitFreeSurface ) THEN
272 WRITE(msgBuf,'(A,A)')
273 & 'CONFIG_CHECK: Cannot select both implicitFreeSurface',
274 & ' and rigidLid.'
275 CALL PRINT_ERROR( msgBuf , myThid)
276 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
277 ENDIF
278
279 IF (rigidLid .AND. exactConserv) THEN
280 WRITE(msgBuf,'(A)')
281 & 'CONFIG_CHECK: exactConserv not compatible with'
282 CALL PRINT_ERROR( msgBuf , myThid)
283 WRITE(msgBuf,'(A)')
284 & 'CONFIG_CHECK: rigidLid (meaningless in that case)'
285 CALL PRINT_ERROR( msgBuf , myThid)
286 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
287 ENDIF
288
289 IF (rigidLid .AND. useRealFreshWaterFlux) THEN
290 WRITE(msgBuf,'(A)')
291 & 'CONFIG_CHECK: useRealFreshWaterFlux not compatible with'
292 CALL PRINT_ERROR( msgBuf , myThid)
293 WRITE(msgBuf,'(A)')
294 & 'CONFIG_CHECK: rigidLid (meaningless in that case)'
295 CALL PRINT_ERROR( msgBuf , myThid)
296 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
297 ENDIF
298
299 IF ( (implicSurfPress.NE.1. .OR. implicDiv2DFlow.NE.1.)
300 & .AND. nonHydrostatic ) THEN
301 WRITE(msgBuf,'(A,A)') 'CONFIG_CHECK: nonHydrostatic',
302 & ' NOT SAFE with non-fully implicit Barotropic solver'
303 CALL PRINT_ERROR( msgBuf , myThid)
304 WRITE(msgBuf,'(A,A)') 'CONFIG_CHECK: To by-pass this',
305 & 'STOP, comment this test and re-compile config_check'
306 CALL PRINT_ERROR( msgBuf , myThid)
307 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
308 ENDIF
309
310 IF (nonlinFreeSurf.NE.0 .AND. .NOT.exactConserv) THEN
311 WRITE(msgBuf,'(A)')
312 & 'CONFIG_CHECK: nonlinFreeSurf cannot be used'
313 CALL PRINT_ERROR( msgBuf , myThid)
314 WRITE(msgBuf,'(A)')
315 & 'CONFIG_CHECK: without exactConserv'
316 CALL PRINT_ERROR( msgBuf , myThid)
317 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
318 ENDIF
319
320 IF (select_rStar.NE.0 .AND. .NOT.exactConserv) THEN
321 WRITE(msgBuf,'(A)')
322 & 'CONFIG_CHECK: r* Coordinate cannot be used'
323 CALL PRINT_ERROR( msgBuf , myThid)
324 WRITE(msgBuf,'(A)')
325 & 'CONFIG_CHECK: without exactConserv'
326 CALL PRINT_ERROR( msgBuf , myThid)
327 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
328 ENDIF
329
330 C- note : not implemented in checkpoint48b but it's done now (since 01-28-03)
331 c IF (select_rStar.GT.0 .AND. useOBCS ) THEN
332 c WRITE(msgBuf,'(A)')
333 c & 'CONFIG_CHECK: r* Coordinate not yet implemented'
334 c CALL PRINT_ERROR( msgBuf , 1)
335 c WRITE(msgBuf,'(A)')
336 c & 'CONFIG_CHECK: in OBC package'
337 c CALL PRINT_ERROR( msgBuf , 1)
338 c STOP 'ABNORMAL END: S/R CONFIG_CHECK'
339 c ENDIF
340
341 IF (nonlinFreeSurf.NE.0 .AND. nonHydrostatic) THEN
342 WRITE(msgBuf,'(A)')
343 & 'CONFIG_CHECK: nonlinFreeSurf not yet implemented'
344 CALL PRINT_ERROR( msgBuf , myThid)
345 WRITE(msgBuf,'(A)')
346 & 'CONFIG_CHECK: in nonHydrostatic code'
347 CALL PRINT_ERROR( msgBuf , myThid)
348 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
349 ENDIF
350
351 IF ( nonlinFreeSurf.NE.0 .AND.
352 & deltaTfreesurf.NE.dTtracerLev(1) ) THEN
353 WRITE(msgBuf,'(A)')
354 & 'CONFIG_CHECK: WARNING: nonlinFreeSurf might cause problems'
355 CALL PRINT_MESSAGE( msgBuf, errorMessageUnit,
356 & SQUEEZE_RIGHT , myThid)
357 WRITE(msgBuf,'(A)')
358 & 'CONFIG_CHECK: with different FreeSurf & Tracer time-steps'
359 CALL PRINT_MESSAGE( msgBuf, errorMessageUnit,
360 & SQUEEZE_RIGHT , myThid)
361 ENDIF
362
363 IF ( useRealFreshWaterFlux .AND. exactConserv
364 & .AND. implicDiv2DFlow.EQ.0. _d 0
365 & .AND. startTime.NE.baseTime .AND. usePickupBeforeC54 ) THEN
366 WRITE(msgBuf,'(A)')
367 & 'CONFIG_CHECK: RealFreshWaterFlux+implicSurfP=0+exactConserv:'
368 CALL PRINT_ERROR( msgBuf , myThid)
369 WRITE(msgBuf,'(A)')
370 & 'CONFIG_CHECK: restart not implemented in this config'
371 CALL PRINT_ERROR( msgBuf , myThid)
372 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
373 ENDIF
374
375 IF ( useRealFreshWaterFlux .AND. .NOT.exactConserv
376 & .AND. implicDiv2DFlow.NE.1. ) THEN
377 WRITE(msgBuf,'(2A)') 'CONFIG_CHECK: **WARNNING** ',
378 & 'RealFreshWater & implicDiv2DFlow < 1'
379 CALL PRINT_MESSAGE( msgBuf, errorMessageUnit,
380 & SQUEEZE_RIGHT , myThid)
381 WRITE(msgBuf,'(2A)') 'CONFIG_CHECK: works better',
382 & ' with exactConserv=.T. (+ #define EXACT_CONSERV)'
383 CALL PRINT_MESSAGE( msgBuf, errorMessageUnit,
384 & SQUEEZE_RIGHT , myThid)
385 ENDIF
386
387 #ifdef EXACT_CONSERV
388 IF (useRealFreshWaterFlux .AND. .NOT.exactConserv
389 & .AND. buoyancyRelation.EQ.'OCEANICP' ) THEN
390 WRITE(msgBuf,'(A)')
391 & 'CONFIG_CHECK: RealFreshWaterFlux with OCEANICP'
392 CALL PRINT_ERROR( msgBuf , myThid)
393 WRITE(msgBuf,'(A)')
394 & 'CONFIG_CHECK: requires exactConserv=T'
395 CALL PRINT_ERROR( msgBuf , myThid)
396 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
397 ENDIF
398 #else
399 IF (useRealFreshWaterFlux
400 & .AND. buoyancyRelation.EQ.'OCEANICP' ) THEN
401 WRITE(msgBuf,'(A)')
402 & 'CONFIG_CHECK: E-P effects on wVel are not included'
403 CALL PRINT_MESSAGE( msgBuf, errorMessageUnit,
404 & SQUEEZE_RIGHT , myThid)
405 WRITE(msgBuf,'(A)')
406 & 'CONFIG_CHECK: ==> use #define EXACT_CONSERV to fix it'
407 CALL PRINT_MESSAGE( msgBuf, errorMessageUnit,
408 & SQUEEZE_RIGHT , myThid)
409 ENDIF
410 #endif /* EXACT_CONSERV */
411
412 IF (.NOT.useCDscheme .AND. (tauCD.NE.0. .OR. rCD.NE.-1.) ) THEN
413 C- jmc: since useCDscheme is a new [04-13-03] flag (default=F),
414 C put this WARNING to stress that even if CD-scheme parameters
415 C (tauCD,rCD) are set, CD-scheme is not used without useCDscheme=T
416 C- and STOP if using mom_fluxform (following Chris advise).
417 C- jmc: but ultimately, this block can/will be removed.
418 IF (.NOT.vectorInvariantMomentum.AND.momStepping) THEN
419 WRITE(msgBuf,'(A)')
420 & 'CONFIG_CHECK: CD-scheme is OFF but params(tauCD,rCD) are set'
421 CALL PRINT_ERROR( msgBuf , myThid)
422 WRITE(msgBuf,'(2A)')
423 & 'CONFIG_CHECK: to turn ON CD-scheme: => "useCDscheme=.TRUE."',
424 & ' in "data", namelist PARM01'
425 CALL PRINT_ERROR( msgBuf , myThid)
426 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
427 ENDIF
428 WRITE(msgBuf,'(2A)') '**WARNNING** ',
429 & 'CONFIG_CHECK: CD-scheme is OFF but params(tauCD,rCD) are set'
430 CALL PRINT_MESSAGE( msgBuf, errorMessageUnit,
431 & SQUEEZE_RIGHT , myThid)
432 WRITE(msgBuf,'(2A)')
433 & 'CONFIG_CHECK: to turn ON CD-scheme: => "useCDscheme=.TRUE."',
434 & ' in "data", namelist PARM01'
435 CALL PRINT_MESSAGE( msgBuf, errorMessageUnit,
436 & SQUEEZE_RIGHT , myThid)
437 ENDIF
438
439 IF ( useCDscheme .AND. useCubedSphereExchange ) THEN
440 WRITE(msgBuf,'(2A)')
441 & 'CONFIG_CHECK: CD-scheme not implemented on CubedSphere grid'
442 CALL PRINT_ERROR( msgBuf , myThid)
443 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
444 ENDIF
445
446 IF ( useOldFreezing .AND. allowFreezing ) THEN
447 WRITE(msgBuf,'(2A)')
448 & 'CONFIG_CHECK: cannot set both: ',
449 & 'allowFreezing & useOldFreezing'
450 CALL PRINT_ERROR( msgBuf , myThid)
451 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
452 ENDIF
453
454 IF ( useMATRIX .AND. useGCHEM ) THEN
455 WRITE(msgBuf,'(2A)')
456 & 'CONFIG_CHECK: cannot set both: useMATRIX & useGCHEM'
457 CALL PRINT_ERROR( msgBuf , myThid)
458 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
459 ENDIF
460
461 IF ( useMATRIX .AND. .NOT.usePTRACERS ) THEN
462 WRITE(msgBuf,'(2A)')
463 & 'CONFIG_CHECK: cannot set useMATRIX ',
464 & 'without setting usePTRACERS'
465 CALL PRINT_ERROR( msgBuf , myThid)
466 STOP 'ABNORMAL END: S/R CONFIG_CHECK'
467 ENDIF
468
469 WRITE(msgBuf,'(A)') 'CONFIG_CHECK: OK'
470 CALL PRINT_MESSAGE(msgBuf,standardMessageUnit,
471 & SQUEEZE_RIGHT,myThid)
472
473 RETURN
474 END

  ViewVC Help
Powered by ViewVC 1.1.22