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

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

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


Revision 1.4 - (show annotations) (download)
Tue Feb 20 19:39:42 2001 UTC (23 years, 4 months ago) by jmc
Branch: MAIN
CVS Tags: pre38tag1, pre38-close, checkpoint37, checkpoint36
Branch point for: pre38
Changes since 1.3: +6 -2 lines
AIM (Atmosphere Intermediate Physics) define as a standard package

1 C $Header: /u/gcmpack/models/MITgcmUV/model/src/packages_init_variables.F,v 1.3 2001/02/04 14:38:48 cnh Exp $
2 C $Name: $
3
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 ALLOW_AIM
44 IF ( useAIM ) CALL AIM_INIT( mythid )
45 #endif
46
47 #ifdef INCLUDE_ECCO_PACKAGE
48 IF (useECCO) THEN
49 CALL ECCO_INIT( myThid )
50 ENDIF
51 #else
52 CALL INI_FORCING( myThid )
53 #endif
54
55
56 RETURN
57 END

  ViewVC Help
Powered by ViewVC 1.1.22