1 |
C $Header: /u/gcmpack/MITgcm/pkg/my82/my82_check.F,v 1.1 2004/09/02 09:11:54 mlosch Exp $ |
2 |
C $Name: $ |
3 |
#include "MY82_OPTIONS.h" |
4 |
|
5 |
SUBROUTINE MY82_CHECK( myThid ) |
6 |
C /==========================================================\ |
7 |
C | SUBROUTINE MY82_CHECK | |
8 |
C | o Validate basic package setup and inter-package | |
9 |
C | dependencies. | |
10 |
C \==========================================================/ |
11 |
IMPLICIT NONE |
12 |
|
13 |
C === Global variables === |
14 |
#include "SIZE.h" |
15 |
#include "EEPARAMS.h" |
16 |
#include "PARAMS.h" |
17 |
|
18 |
C === Routine arguments === |
19 |
C myThid - Number of this instance of MY82_CHECK |
20 |
INTEGER myThid |
21 |
|
22 |
#ifdef ALLOW_MY82 |
23 |
|
24 |
C === Local variables === |
25 |
C msgBuf - Informational/error meesage buffer |
26 |
CHARACTER*(MAX_LEN_MBUF) msgBuf |
27 |
|
28 |
WRITE(msgBuf,'(A)') 'MY82_CHECK: #define ALLOW_MY82' |
29 |
CALL PRINT_MESSAGE( msgBuf, standardMessageUnit, |
30 |
& SQUEEZE_RIGHT , 1) |
31 |
|
32 |
C So far, MY82 works only with oceanic z-coordinates |
33 |
IF ( buoyancyRelation .NE. 'OCEANIC' ) THEN |
34 |
WRITE(msgBuf,'(A)') |
35 |
& 'MY82 works only with buoyancyRelation = ''OCEANIC''' |
36 |
CALL PRINT_ERROR( msgBuf , 1) |
37 |
STOP 'ABNORMAL END: S/R MY82_CHECK' |
38 |
ENDIF |
39 |
|
40 |
C MY82 needs convection turned off (will be packaged later) |
41 |
IF (cAdjFreq.NE.0. .OR. |
42 |
& ivdc_kappa.NE.0. ) THEN |
43 |
WRITE(msgBuf,'(A)') 'Some form of convection has been enabled' |
44 |
CALL PRINT_ERROR( msgBuf , 1) |
45 |
STOP 'ABNORMAL END: S/R MY82_CHECK' |
46 |
ENDIF |
47 |
|
48 |
IF ( useKPP ) THEN |
49 |
WRITE(msgBuf,'(A)') |
50 |
& 'MY82 and KPP cannot be turned on at the same time' |
51 |
CALL PRINT_ERROR( msgBuf , 1) |
52 |
STOP 'ABNORMAL END: S/R MY82_CHECK' |
53 |
ENDIF |
54 |
|
55 |
IF ( usePP81 ) THEN |
56 |
WRITE(msgBuf,'(A)') |
57 |
& 'MY82 and PP81 cannot be turned on at the same time' |
58 |
CALL PRINT_ERROR( msgBuf , 1) |
59 |
STOP 'ABNORMAL END: S/R MY82_CHECK' |
60 |
ENDIF |
61 |
|
62 |
C MY82 needs implicit vertical diffusion and viscosity |
63 |
IF (.NOT.implicitDiffusion ) THEN |
64 |
WRITE(msgBuf,'(A)') |
65 |
& 'MY82 needs implicitDiffusion to be enabled' |
66 |
CALL PRINT_ERROR( msgBuf , 1) |
67 |
STOP 'ABNORMAL END: S/R MY82_CHECK' |
68 |
ENDIF |
69 |
IF (.NOT.implicitViscosity) THEN |
70 |
WRITE(msgBuf,'(A)') |
71 |
& 'MY82 needs implicitViscosity to be enabled' |
72 |
CALL PRINT_ERROR( msgBuf , 1) |
73 |
STOP 'ABNORMAL END: S/R MY82_CHECK' |
74 |
ENDIF |
75 |
|
76 |
#endif /* ALLOW_MY82 */ |
77 |
|
78 |
return |
79 |
end |