/[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.3 - (hide annotations) (download)
Sun Feb 4 14:38:48 2001 UTC (23 years, 4 months ago) by cnh
Branch: MAIN
CVS Tags: checkpoint35
Changes since 1.2: +2 -1 lines
Made sure each .F and .h file had
the CVS keywords Header and Name at its start.
Most had header but very few currently have Name, so
lots of changes!

1 cnh 1.3 C $Header: /u/gcmpack/models/MITgcmUV/model/src/packages_init_variables.F,v 1.2 2001/02/02 21:04:48 adcroft Exp $
2     C $Name: $
3 adcroft 1.2
4     #include "CPP_OPTIONS.h"
5    
6     SUBROUTINE PACKAGES_INIT_VARIABLES( myThid )
7     C /==========================================================\
8     C | SUBROUTINE PACKAGES_INIT_VARIABLES |
9     C | o Does initialisation of package-related variable data |
10     C |==========================================================|
11     C \==========================================================/
12     IMPLICIT NONE
13    
14     C === Global variables ===
15     #include "SIZE.h"
16     #include "EEPARAMS.h"
17     #include "PARAMS.h"
18    
19     C === Routine arguments ===
20     C myThid - Number of this instances
21     INTEGER myThid
22    
23     #ifdef ALLOW_GMREDI
24     C-- Initialize GM/Redi parameterization
25     IF (useGMRedi) CALL GMREDI_INIT( myThid )
26     #endif
27    
28     #ifdef ALLOW_KPP
29     C-- Initialize KPP vertical mixing scheme.
30     IF (useKPP) THEN
31     CALL KPP_INIT( myThid )
32     CALL KPP_OPEN_DIAGS( myThid )
33     ENDIF
34     #endif
35    
36     #ifdef ALLOW_OBCS
37     C-- Open boundaries data
38     IF (useOBCS) THEN
39     CALL OBCS_INIT_VARIABLES( myThid )
40     ENDIF
41     #endif
42    
43     #ifdef INCLUDE_ECCO_PACKAGE
44     IF (useECCO) THEN
45     CALL ECCO_INIT( myThid )
46     ENDIF
47     #else
48     CALL INI_FORCING( myThid )
49     #endif
50    
51    
52     RETURN
53     END

  ViewVC Help
Powered by ViewVC 1.1.22