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

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

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


Revision 1.19 - (show annotations) (download)
Wed Nov 28 00:18:17 2007 UTC (16 years, 5 months ago) by dimitri
Branch: MAIN
CVS Tags: checkpoint60, checkpoint61, checkpoint59q, checkpoint59p, checkpoint59r, checkpoint59m, checkpoint59l, checkpoint59o, checkpoint59n, checkpoint59k, checkpoint61b, checkpoint61a
Changes since 1.18: +1 -4 lines
added pkg/salt_plume by gathering code, which were previously
spread around various files in model/inc and model/src
results remain numerically identical to before, as a first step
towards adding more options, etc., to this package

1 C $Header: /u/gcmpack/MITgcm/model/src/ini_dynvars.F,v 1.18 2007/09/22 17:55:31 dimitri Exp $
2 C $Name: $
3
4 #include "CPP_OPTIONS.h"
5
6 CBOP
7 C !ROUTINE: INI_DYNVARS
8 C !INTERFACE:
9 SUBROUTINE INI_DYNVARS( myThid )
10 C !DESCRIPTION: \bv
11 C *==========================================================*
12 C | SUBROUTINE INI_DYNVARS
13 C | o Initialise to zero all DYNVARS.h arrays
14 C *==========================================================*
15 C | Sets all the State variables to zero.
16 C | Sets all the Gs (arrays used for multi-level time-stepping)
17 C | to zero.
18 C *==========================================================*
19 C \ev
20
21 C !USES:
22 IMPLICIT NONE
23 C === Global variables ===
24 #include "SIZE.h"
25 #include "EEPARAMS.h"
26 #include "PARAMS.h"
27 #include "DYNVARS.h"
28
29 C !INPUT/OUTPUT PARAMETERS:
30 C == Routine arguments ==
31 C myThid - Number of this instance of INI_UVEL
32 INTEGER myThid
33
34 C !LOCAL VARIABLES:
35 C == Local variables ==
36 C bi,bj - Loop counters
37 C I,J,K
38 INTEGER bi, bj
39 INTEGER I, J, K
40 CEOP
41
42 C-- Over all tiles
43 DO bj = myByLo(myThid), myByHi(myThid)
44 DO bi = myBxLo(myThid), myBxHi(myThid)
45
46 C- 3D arrays
47 DO K=1,Nr
48 DO J=1-Oly,sNy+Oly
49 DO I=1-Olx,sNx+Olx
50
51 uVel(I,J,K,bi,bj)=0. _d 0
52 vVel(I,J,K,bi,bj)=0. _d 0
53 wVel(I,J,K,bi,bj)=0. _d 0
54 theta(I,J,K,bi,bj)=0. _d 0
55 salt(I,J,K,bi,bj)=0. _d 0
56
57 gU(I,J,K,bi,bj)=0. _d 0
58 gV(I,J,K,bi,bj)=0. _d 0
59 gT(I,J,K,bi,bj)=0. _d 0
60 gS(I,J,K,bi,bj)=0. _d 0
61 #ifdef ALLOW_ADAMSBASHFORTH_3
62 guNm(I,J,K,bi,bj,1)=0. _d 0
63 gvNm(I,J,K,bi,bj,1)=0. _d 0
64 gtNm(I,J,K,bi,bj,1)=0. _d 0
65 gsNm(I,J,K,bi,bj,1)=0. _d 0
66 guNm(I,J,K,bi,bj,2)=0. _d 0
67 gvNm(I,J,K,bi,bj,2)=0. _d 0
68 gtNm(I,J,K,bi,bj,2)=0. _d 0
69 gsNm(I,J,K,bi,bj,2)=0. _d 0
70 #else
71 guNm1(I,J,K,bi,bj) =0. _d 0
72 gvNm1(I,J,K,bi,bj) =0. _d 0
73 gtNm1(I,J,K,bi,bj) =0. _d 0
74 gsNm1(I,J,K,bi,bj) =0. _d 0
75 #endif
76
77 totPhiHyd(I,J,K,bi,bj)=0. _d 0
78 IVDConvCount(i,j,k,bi,bj) = 0. _d 0
79 ENDDO
80 ENDDO
81 ENDDO
82
83 C- 2D arrays
84 DO J=1-Oly,sNy+Oly
85 DO I=1-Olx,sNx+Olx
86 etaN(I,J,bi,bj)=0. _d 0
87 etaH(I,J,bi,bj)=0. _d 0
88 phiHydLow(I,J,bi,bj)=0. _d 0
89 hMixLayer(I,J,bi,bj)=0. _d 0
90 ENDDO
91 ENDDO
92
93 ENDDO
94 ENDDO
95
96 RETURN
97 END

  ViewVC Help
Powered by ViewVC 1.1.22