1 | SUBROUTINE dissip_p( vcov,ucov,teta,p, dv,du,dh ) |
---|
2 | c |
---|
3 | USE parallel |
---|
4 | USE write_field_p |
---|
5 | IMPLICIT NONE |
---|
6 | |
---|
7 | |
---|
8 | c .. Avec nouveaux operateurs star : gradiv2 , divgrad2, nxgraro2 ... |
---|
9 | c ( 10/01/98 ) |
---|
10 | |
---|
11 | c======================================================================= |
---|
12 | c |
---|
13 | c Auteur: P. Le Van |
---|
14 | c ------- |
---|
15 | c |
---|
16 | c Objet: |
---|
17 | c ------ |
---|
18 | c |
---|
19 | c Dissipation horizontale |
---|
20 | c |
---|
21 | c======================================================================= |
---|
22 | c----------------------------------------------------------------------- |
---|
23 | c Declarations: |
---|
24 | c ------------- |
---|
25 | |
---|
26 | #include "dimensions.h" |
---|
27 | #include "paramet.h" |
---|
28 | #include "comconst.h" |
---|
29 | #include "comgeom.h" |
---|
30 | #include "comdissnew.h" |
---|
31 | #include "comdissipn.h" |
---|
32 | |
---|
33 | c Arguments: |
---|
34 | c ---------- |
---|
35 | |
---|
36 | REAL vcov(ip1jm,llm),ucov(ip1jmp1,llm),teta(ip1jmp1,llm) |
---|
37 | REAL p( ip1jmp1,llmp1 ) |
---|
38 | REAL dv(ip1jm,llm),du(ip1jmp1,llm),dh(ip1jmp1,llm) |
---|
39 | |
---|
40 | c Local: |
---|
41 | c ------ |
---|
42 | |
---|
43 | REAL gdx(ip1jmp1,llm),gdy(ip1jm,llm) |
---|
44 | REAL grx(ip1jmp1,llm),gry(ip1jm,llm) |
---|
45 | REAL te1dt(llm),te2dt(llm),te3dt(llm) |
---|
46 | REAL deltapres(ip1jmp1,llm) |
---|
47 | |
---|
48 | INTEGER l,ij |
---|
49 | |
---|
50 | REAL SSUM |
---|
51 | EXTERNAL gradiv ,nXgrarot,divgrad,initial0 |
---|
52 | EXTERNAL gradiv2,nXgraro2,divgrad2,SSUM |
---|
53 | integer :: ijb,ije |
---|
54 | c----------------------------------------------------------------------- |
---|
55 | c initialisations: |
---|
56 | c ---------------- |
---|
57 | |
---|
58 | DO l=1,llm |
---|
59 | te1dt(l) = tetaudiv(l) * dtdiss |
---|
60 | te2dt(l) = tetaurot(l) * dtdiss |
---|
61 | te3dt(l) = tetah(l) * dtdiss |
---|
62 | ENDDO |
---|
63 | c CALL initial0( ijp1llm, du ) |
---|
64 | c CALL initial0( ijmllm , dv ) |
---|
65 | c CALL initial0( ijp1llm, dh ) |
---|
66 | |
---|
67 | ijb=ij_begin |
---|
68 | ije=ij_end |
---|
69 | |
---|
70 | du(ijb:ije,:)=0 |
---|
71 | dh(ijb:ije,:)=0 |
---|
72 | |
---|
73 | if (pole_sud) ije=ij_end-iip1 |
---|
74 | |
---|
75 | dv(ijb:ije,:)=0 |
---|
76 | |
---|
77 | c----------------------------------------------------------------------- |
---|
78 | c Calcul de la dissipation: |
---|
79 | c ------------------------- |
---|
80 | |
---|
81 | c Calcul de la partie grad ( div ) : |
---|
82 | c ------------------------------------- |
---|
83 | |
---|
84 | |
---|
85 | |
---|
86 | IF(lstardis) THEN |
---|
87 | c IF (.FALSE.) THEN |
---|
88 | CALL gradiv2_p( llm,ucov,vcov,nitergdiv,gdx,gdy ) |
---|
89 | ELSE |
---|
90 | CALL gradiv_p ( llm,ucov,vcov,nitergdiv,gdx,gdy ) |
---|
91 | ENDIF |
---|
92 | |
---|
93 | c call write_field3d_p('gdx',reshape(gdx,(/iip1,jjp1,llm/))) |
---|
94 | c call write_field3d_p('gdy',reshape(gdy,(/iip1,jjm,llm/))) |
---|
95 | c stop |
---|
96 | |
---|
97 | ijb=ij_begin |
---|
98 | ije=ij_end |
---|
99 | if (pole_sud) ije=ij_end-iip1 |
---|
100 | |
---|
101 | DO l=1,llm |
---|
102 | if (pole_nord) then |
---|
103 | DO ij = 1, iip1 |
---|
104 | gdx( ij ,l) = 0. |
---|
105 | ENDDO |
---|
106 | endif |
---|
107 | |
---|
108 | if (pole_sud) then |
---|
109 | DO ij = 1, iip1 |
---|
110 | gdx(ij+ip1jm,l) = 0. |
---|
111 | ENDDO |
---|
112 | endif |
---|
113 | |
---|
114 | if (pole_nord) ijb=ij_begin+iip1 |
---|
115 | DO ij = ijb,ije |
---|
116 | du(ij,l) = du(ij,l) - te1dt(l) *gdx(ij,l) |
---|
117 | ENDDO |
---|
118 | |
---|
119 | if (pole_nord) ijb=ij_begin |
---|
120 | DO ij = ijb,ije |
---|
121 | dv(ij,l) = dv(ij,l) - te1dt(l) *gdy(ij,l) |
---|
122 | ENDDO |
---|
123 | |
---|
124 | ENDDO |
---|
125 | |
---|
126 | c calcul de la partie n X grad ( rot ): |
---|
127 | c --------------------------------------- |
---|
128 | |
---|
129 | IF(lstardis) THEN |
---|
130 | c IF (.FALSE.) THEN |
---|
131 | CALL nxgraro2_p( llm,ucov, vcov, nitergrot,grx,gry ) |
---|
132 | ELSE |
---|
133 | CALL nxgrarot_p( llm,ucov, vcov, nitergrot,grx,gry ) |
---|
134 | ENDIF |
---|
135 | |
---|
136 | c call write_field3d_p('grx',reshape(grx,(/iip1,jjp1,llm/))) |
---|
137 | c call write_field3d_p('gry',reshape(gry,(/iip1,jjm,llm/))) |
---|
138 | c stop |
---|
139 | |
---|
140 | |
---|
141 | ijb=ij_begin |
---|
142 | ije=ij_end |
---|
143 | if (pole_sud) ije=ij_end-iip1 |
---|
144 | |
---|
145 | DO l=1,llm |
---|
146 | |
---|
147 | if (pole_nord) then |
---|
148 | DO ij = 1, iip1 |
---|
149 | grx(ij,l) = 0. |
---|
150 | ENDDO |
---|
151 | endif |
---|
152 | |
---|
153 | if (pole_nord) ijb=ij_begin+iip1 |
---|
154 | DO ij = ijb,ije |
---|
155 | du(ij,l) = du(ij,l) - te2dt(l) * grx(ij,l) |
---|
156 | ENDDO |
---|
157 | |
---|
158 | if (pole_nord) ijb=ij_begin |
---|
159 | DO ij = ijb, ije |
---|
160 | dv(ij,l) = dv(ij,l) - te2dt(l) * gry(ij,l) |
---|
161 | ENDDO |
---|
162 | |
---|
163 | ENDDO |
---|
164 | |
---|
165 | c calcul de la partie div ( grad ): |
---|
166 | c ----------------------------------- |
---|
167 | |
---|
168 | |
---|
169 | IF(lstardis) THEN |
---|
170 | c IF (.FALSE.) THEN |
---|
171 | |
---|
172 | ijb=ij_begin |
---|
173 | ije=ij_end |
---|
174 | |
---|
175 | DO l = 1, llm |
---|
176 | DO ij = ijb, ije |
---|
177 | deltapres(ij,l) = AMAX1( 0., p(ij,l) - p(ij,l+1) ) |
---|
178 | ENDDO |
---|
179 | ENDDO |
---|
180 | |
---|
181 | CALL divgrad2_p( llm,teta, deltapres ,niterh, gdx ) |
---|
182 | ELSE |
---|
183 | CALL divgrad_p ( llm,teta, niterh, gdx ) |
---|
184 | ENDIF |
---|
185 | |
---|
186 | c call write_field3d_p('gdx2',reshape(gdx,(/iip1,jmp1,llm/))) |
---|
187 | c stop |
---|
188 | |
---|
189 | ijb=ij_begin |
---|
190 | ije=ij_end |
---|
191 | |
---|
192 | DO l = 1,llm |
---|
193 | DO ij = ijb,ije |
---|
194 | dh( ij,l ) = dh( ij,l ) - te3dt(l) * gdx( ij,l ) |
---|
195 | ENDDO |
---|
196 | ENDDO |
---|
197 | |
---|
198 | RETURN |
---|
199 | END |
---|