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

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

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


Revision 1.2 - (hide annotations) (download)
Fri Feb 2 21:04:48 2001 UTC (23 years, 4 months ago) by adcroft
Branch: MAIN
Changes since 1.1: +52 -0 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 adcroft 1.2 C $Header: /u/gcmpack/models/MITgcmUV/model/src/Attic/packages_init_variables.F,v 1.1.2.1 2001/01/30 21:03:00 adcroft Exp $
2    
3     #include "CPP_OPTIONS.h"
4    
5     SUBROUTINE PACKAGES_INIT_VARIABLES( myThid )
6     C /==========================================================\
7     C | SUBROUTINE PACKAGES_INIT_VARIABLES |
8     C | o Does initialisation of package-related variable data |
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     #ifdef ALLOW_GMREDI
23     C-- Initialize GM/Redi parameterization
24     IF (useGMRedi) CALL GMREDI_INIT( myThid )
25     #endif
26    
27     #ifdef ALLOW_KPP
28     C-- Initialize KPP vertical mixing scheme.
29     IF (useKPP) THEN
30     CALL KPP_INIT( myThid )
31     CALL KPP_OPEN_DIAGS( myThid )
32     ENDIF
33     #endif
34    
35     #ifdef ALLOW_OBCS
36     C-- Open boundaries data
37     IF (useOBCS) THEN
38     CALL OBCS_INIT_VARIABLES( myThid )
39     ENDIF
40     #endif
41    
42     #ifdef INCLUDE_ECCO_PACKAGE
43     IF (useECCO) THEN
44     CALL ECCO_INIT( myThid )
45     ENDIF
46     #else
47     CALL INI_FORCING( myThid )
48     #endif
49    
50    
51     RETURN
52     END

  ViewVC Help
Powered by ViewVC 1.1.22