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

Contents of /MITgcm/model/src/packages_readparms.F

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


Revision 1.2 - (show annotations) (download)
Fri Feb 2 21:04:48 2001 UTC (23 years, 4 months ago) by adcroft
Branch: MAIN
CVS Tags: checkpoint35
Changes since 1.1: +15 -3 lines
Merged changes from branch "branch-atmos-merge" into MAIN (checkpoint34)
 - substantial modifications to algorithm sequence (dynamics.F)
 - packaged OBCS, Shapiro filter, Zonal filter, Atmospheric Physics

1 C $Header: /u/gcmpack/models/MITgcmUV/model/src/packages_readparms.F,v 1.1.2.2 2001/01/30 21:03:00 adcroft Exp $
2 C $Name: $
3
4 #include "CPP_OPTIONS.h"
5
6 CStartOfInterface
7 SUBROUTINE PACKAGES_READPARMS(myThid)
8 C /==========================================================\
9 C | SUBROUTINE PACKAGES_READPARMS |
10 C | o Read runtime package configuration parameters |
11 C |==========================================================|
12 C | Packages can have internal runtime configuration |
13 C | parameters. A package provides a routine |
14 C | ${PKGNAME}_READ_PARMS to read these parameters. In |
15 C | general this routine should read parameters from a file|
16 C | called data.${pkgname}. |
17 C | This routine (S/R PACKAGES_READPARMS) calls per-package|
18 C | parameter reading routines. |
19 C \==========================================================/
20 IMPLICIT NONE
21
22 C == Global variables ==
23 #include "SIZE.h"
24 #include "EEPARAMS.h"
25 #include "PARAMS.h"
26
27 C == Routine arguments ==
28 INTEGER myThid
29 CEndOfInterface
30
31 C == Local variables ==
32
33 #ifdef ALLOW_GMREDI
34 C-- Initialize GM/Redi parameters
35 IF (useGMRedi) CALL GMREDI_READPARMS( myThid )
36 #endif
37
38 #ifdef ALLOW_KPP
39 C-- Initialize KPP parameters
40 IF (useKPP) CALL KPP_READPARMS( myThid )
41 #endif
42
43 #ifdef ALLOW_OBCS
44 IF (useOBCS) CALL OBCS_READPARMS( myThid )
45 #endif
46
47 #ifdef INCLUDE_ECCO_PACKAGE
48 c-- Initialize ECCO package parameters
49 IF (useECCO) CALL ECCO_READPARMS ( myThid )
50 #endif
51
52 END

  ViewVC Help
Powered by ViewVC 1.1.22