/[MITgcm]/MITgcm/model/src/packages_check.F
ViewVC logotype

Annotation of /MITgcm/model/src/packages_check.F

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


Revision 1.5 - (hide annotations) (download)
Mon Nov 13 16:32:58 2000 UTC (23 years, 6 months ago) by heimbach
Branch: MAIN
CVS Tags: branch-atmos-merge-start, branch-atmos-merge-shapiro, checkpoint33, checkpoint32, checkpoint34, branch-atmos-merge-zonalfilt, branch-atmos-merge-phase5, branch-atmos-merge-phase4, branch-atmos-merge-phase7, branch-atmos-merge-phase6, branch-atmos-merge-phase1, branch-atmos-merge-phase3, branch-atmos-merge-phase2
Branch point for: branch-atmos-merge
Changes since 1.4: +3 -3 lines
Rescaling of forcing fields done immediately after reading fields.

1 heimbach 1.5 C $Header: /u/gcmpack/models/MITgcmUV/model/src/packages_check.F,v 1.4 2000/09/13 20:35:07 heimbach Exp $
2 adcroft 1.1
3     #include "CPP_OPTIONS.h"
4    
5 heimbach 1.2 SUBROUTINE PACKAGES_CHECK( myThid )
6 adcroft 1.1 C /==========================================================\
7 heimbach 1.2 C | SUBROUTINE PACKAGES_CHECK |
8 adcroft 1.1 C | o Check dependances between selected packages |
9     C |==========================================================|
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 instances
20     INTEGER myThid
21    
22     C === Local variables ===
23     C msgBuf - Informational/error meesage buffer
24     CHARACTER*(MAX_LEN_MBUF) msgBuf
25    
26 heimbach 1.3 #ifdef ALLOW_KPP
27     IF (useKPP) CALL KPP_CHECK( myThid )
28 adcroft 1.1 #else
29 heimbach 1.5 IF (useKPP) CALL PACKAGES_CHECK_ERROR('KPP', myThid)
30 adcroft 1.1 #endif
31    
32 heimbach 1.3 #ifdef ALLOW_GMREDI
33     IF (useGMRedi) CALL GMREDI_CHECK( myThid )
34     #else
35 heimbach 1.5 IF (useGMRedi) CALL PACKAGES_CHECK_ERROR('GMREDI', myThid)
36 adcroft 1.1 #endif
37    
38     return
39     end

  ViewVC Help
Powered by ViewVC 1.1.22