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

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

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


Revision 1.6 - (show annotations) (download)
Tue Feb 11 03:03:46 2003 UTC (21 years, 3 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint50c_post, checkpoint48e_post, checkpoint50c_pre, checkpoint48i_post, checkpoint50, checkpoint50d_post, checkpoint50b_pre, checkpoint48f_post, checkpoint48h_post, checkpoint50f_post, checkpoint50a_post, checkpoint50f_pre, checkpoint50g_post, checkpoint50e_pre, checkpoint50e_post, checkpoint50d_pre, checkpoint49, checkpoint48g_post, checkpoint50b_post
Changes since 1.5: +11 -2 lines
call ZONAL_FILT_INIT only if useZONAL_FILT (avoid out-of-bounds index)

1 C $Header: /u/gcmpack/MITgcm/model/src/packages_init_fixed.F,v 1.5 2002/06/15 03:28:39 jmc Exp $
2 C $Name: $
3
4 #include "CPP_OPTIONS.h"
5
6 CBOP
7 C !ROUTINE: PACKAGES_INIT_FIXED
8 C !INTERFACE:
9 SUBROUTINE PACKAGES_INIT_FIXED( myThid )
10
11 C !DESCRIPTION: \bv
12 C *==========================================================*
13 C | SUBROUTINE PACKAGES_INIT_FIXED
14 C | o Does initialisation of package-related fixed fields
15 C *==========================================================*
16 C \ev
17
18 C !CALLING SEQUENCE:
19 C PACKAGES_INIT_FIXED
20 C |
21 C |-- GAD_INIT
22 C |
23 C |-- OBCS_INIT_FIXED
24 C |
25 C |-- FLT_INIT
26 C |
27 C |-- ZONAL_FILT_INIT
28
29 C !USES:
30 IMPLICIT NONE
31 C === Global variables ===
32 #include "SIZE.h"
33 #include "EEPARAMS.h"
34 #include "PARAMS.h"
35
36 C !INPUT/OUTPUT PARAMETERS:
37 C === Routine arguments ===
38 C myThid - Number of this instances
39 INTEGER myThid
40 CEOP
41
42 C-- Initialize fixed params for GAD
43 CALL GAD_INIT( myThid )
44
45 C-- Initialize fixed arrays for OBCS
46 #ifdef ALLOW_OBCS
47 IF (useOBCS) THEN
48 CALL OBCS_INIT_FIXED( myThid )
49 ENDIF
50 #endif
51 #ifdef ALLOW_FLT
52 C-- Initialise Float positions
53 IF (useFLT) THEN
54 CALL FLT_INIT(nIter0,startTime,myThid )
55 _BARRIER
56 ENDIF
57 #endif
58 #ifdef ALLOW_ZONAL_FILT
59 C-- Latitude circle filter initialisation
60 IF (useZONAL_FILT) THEN
61 CALL ZONAL_FILT_INIT(myThid)
62 _BARRIER
63 ENDIF
64 #endif
65
66 RETURN
67 END

  ViewVC Help
Powered by ViewVC 1.1.22