1 | ! |
---|
2 | ! $Header$ |
---|
3 | ! |
---|
4 | SUBROUTINE integrd |
---|
5 | $ ( nq,vcovm1,ucovm1,tetam1,psm1,massem1, |
---|
6 | $ dv,du,dteta,dq,dp,vcov,ucov,teta,q,ps,masse,phis,finvmaold ) |
---|
7 | |
---|
8 | IMPLICIT NONE |
---|
9 | |
---|
10 | |
---|
11 | c======================================================================= |
---|
12 | c |
---|
13 | c Auteur: P. Le Van |
---|
14 | c ------- |
---|
15 | c |
---|
16 | c objet: |
---|
17 | c ------ |
---|
18 | c |
---|
19 | c Incrementation des tendances dynamiques |
---|
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 "comvert.h" |
---|
31 | #include "logic.h" |
---|
32 | #include "temps.h" |
---|
33 | #include "serre.h" |
---|
34 | #include "advtrac.h" |
---|
35 | |
---|
36 | c Arguments: |
---|
37 | c ---------- |
---|
38 | |
---|
39 | INTEGER nq |
---|
40 | |
---|
41 | REAL vcov(ip1jm,llm),ucov(ip1jmp1,llm),teta(ip1jmp1,llm) |
---|
42 | REAL q(ip1jmp1,llm,nq) |
---|
43 | REAL ps(ip1jmp1),masse(ip1jmp1,llm),phis(ip1jmp1) |
---|
44 | |
---|
45 | REAL vcovm1(ip1jm,llm),ucovm1(ip1jmp1,llm) |
---|
46 | REAL tetam1(ip1jmp1,llm),psm1(ip1jmp1),massem1(ip1jmp1,llm) |
---|
47 | |
---|
48 | REAL dv(ip1jm,llm),du(ip1jmp1,llm) |
---|
49 | REAL dteta(ip1jmp1,llm),dp(ip1jmp1) |
---|
50 | REAL dq(ip1jmp1,llm,nq), finvmaold(ip1jmp1,llm) |
---|
51 | |
---|
52 | c Local: |
---|
53 | c ------ |
---|
54 | |
---|
55 | REAL vscr( ip1jm ),uscr( ip1jmp1 ),hscr( ip1jmp1 ),pscr(ip1jmp1) |
---|
56 | REAL massescr( ip1jmp1,llm ), finvmasse(ip1jmp1,llm) |
---|
57 | REAL p(ip1jmp1,llmp1) |
---|
58 | REAL tpn,tps,tppn(iim),tpps(iim) |
---|
59 | REAL qpn,qps,qppn(iim),qpps(iim) |
---|
60 | REAL deltap( ip1jmp1,llm ) |
---|
61 | |
---|
62 | INTEGER l,ij,iq |
---|
63 | |
---|
64 | REAL SSUM |
---|
65 | |
---|
66 | c----------------------------------------------------------------------- |
---|
67 | |
---|
68 | DO l = 1,llm |
---|
69 | DO ij = 1,iip1 |
---|
70 | ucov( ij , l) = 0. |
---|
71 | ucov( ij +ip1jm, l) = 0. |
---|
72 | uscr( ij ) = 0. |
---|
73 | uscr( ij +ip1jm ) = 0. |
---|
74 | ENDDO |
---|
75 | ENDDO |
---|
76 | |
---|
77 | |
---|
78 | c ............ integration de ps .............. |
---|
79 | |
---|
80 | CALL SCOPY(ip1jmp1*llm, masse, 1, massescr, 1) |
---|
81 | |
---|
82 | DO 2 ij = 1,ip1jmp1 |
---|
83 | pscr (ij) = ps(ij) |
---|
84 | ps (ij) = psm1(ij) + dt * dp(ij) |
---|
85 | 2 CONTINUE |
---|
86 | c |
---|
87 | DO ij = 1,ip1jmp1 |
---|
88 | IF( ps(ij).LT.0. ) THEN |
---|
89 | PRINT*,' Au point ij = ',ij, ' , pression sol neg. ', ps(ij) |
---|
90 | STOP' dans integrd' |
---|
91 | ENDIF |
---|
92 | ENDDO |
---|
93 | c |
---|
94 | DO ij = 1, iim |
---|
95 | tppn(ij) = aire( ij ) * ps( ij ) |
---|
96 | tpps(ij) = aire(ij+ip1jm) * ps(ij+ip1jm) |
---|
97 | ENDDO |
---|
98 | tpn = SSUM(iim,tppn,1)/apoln |
---|
99 | tps = SSUM(iim,tpps,1)/apols |
---|
100 | DO ij = 1, iip1 |
---|
101 | ps( ij ) = tpn |
---|
102 | ps(ij+ip1jm) = tps |
---|
103 | ENDDO |
---|
104 | c |
---|
105 | c ... Calcul de la nouvelle masse d'air au dernier temps integre t+1 ... |
---|
106 | c |
---|
107 | CALL pression ( ip1jmp1, ap, bp, ps, p ) |
---|
108 | CALL massdair ( p , masse ) |
---|
109 | |
---|
110 | CALL SCOPY( ijp1llm , masse, 1, finvmasse, 1 ) |
---|
111 | CALL filtreg( finvmasse, jjp1, llm, -2, 2, .TRUE., 1 ) |
---|
112 | c |
---|
113 | |
---|
114 | c ............ integration de ucov, vcov, h .............. |
---|
115 | |
---|
116 | DO 10 l = 1,llm |
---|
117 | |
---|
118 | DO 4 ij = iip2,ip1jm |
---|
119 | uscr( ij ) = ucov( ij,l ) |
---|
120 | ucov( ij,l ) = ucovm1( ij,l ) + dt * du( ij,l ) |
---|
121 | 4 CONTINUE |
---|
122 | |
---|
123 | DO 5 ij = 1,ip1jm |
---|
124 | vscr( ij ) = vcov( ij,l ) |
---|
125 | vcov( ij,l ) = vcovm1( ij,l ) + dt * dv( ij,l ) |
---|
126 | 5 CONTINUE |
---|
127 | |
---|
128 | DO 6 ij = 1,ip1jmp1 |
---|
129 | hscr( ij ) = teta(ij,l) |
---|
130 | teta ( ij,l ) = tetam1(ij,l) * massem1(ij,l) / masse(ij,l) |
---|
131 | $ + dt * dteta(ij,l) / masse(ij,l) |
---|
132 | 6 CONTINUE |
---|
133 | |
---|
134 | c .... Calcul de la valeur moyenne, unique aux poles pour teta ...... |
---|
135 | c |
---|
136 | c |
---|
137 | DO ij = 1, iim |
---|
138 | tppn(ij) = aire( ij ) * teta( ij ,l) |
---|
139 | tpps(ij) = aire(ij+ip1jm) * teta(ij+ip1jm,l) |
---|
140 | ENDDO |
---|
141 | tpn = SSUM(iim,tppn,1)/apoln |
---|
142 | tps = SSUM(iim,tpps,1)/apols |
---|
143 | |
---|
144 | DO ij = 1, iip1 |
---|
145 | teta( ij ,l) = tpn |
---|
146 | teta(ij+ip1jm,l) = tps |
---|
147 | ENDDO |
---|
148 | c |
---|
149 | |
---|
150 | IF(leapf) THEN |
---|
151 | CALL SCOPY ( ip1jmp1, uscr(1), 1, ucovm1(1, l), 1 ) |
---|
152 | CALL SCOPY ( ip1jm, vscr(1), 1, vcovm1(1, l), 1 ) |
---|
153 | CALL SCOPY ( ip1jmp1, hscr(1), 1, tetam1(1, l), 1 ) |
---|
154 | END IF |
---|
155 | |
---|
156 | 10 CONTINUE |
---|
157 | |
---|
158 | |
---|
159 | c |
---|
160 | c ....... integration de q ...... |
---|
161 | c |
---|
162 | c$$$ IF( iadv(1).NE.3.AND.iadv(2).NE.3 ) THEN |
---|
163 | c$$$c |
---|
164 | c$$$ IF( forward. OR . leapf ) THEN |
---|
165 | c$$$ DO iq = 1,2 |
---|
166 | c$$$ DO l = 1,llm |
---|
167 | c$$$ DO ij = 1,ip1jmp1 |
---|
168 | c$$$ q(ij,l,iq) = ( q(ij,l,iq)*finvmaold(ij,l) + dtvr *dq(ij,l,iq) )/ |
---|
169 | c$$$ $ finvmasse(ij,l) |
---|
170 | c$$$ ENDDO |
---|
171 | c$$$ ENDDO |
---|
172 | c$$$ ENDDO |
---|
173 | c$$$ ELSE |
---|
174 | c$$$ DO iq = 1,2 |
---|
175 | c$$$ DO l = 1,llm |
---|
176 | c$$$ DO ij = 1,ip1jmp1 |
---|
177 | c$$$ q( ij,l,iq ) = q( ij,l,iq ) * finvmaold(ij,l) / finvmasse(ij,l) |
---|
178 | c$$$ ENDDO |
---|
179 | c$$$ ENDDO |
---|
180 | c$$$ ENDDO |
---|
181 | c$$$ |
---|
182 | c$$$ END IF |
---|
183 | c$$$c |
---|
184 | c$$$ ENDIF |
---|
185 | |
---|
186 | DO l = 1, llm |
---|
187 | DO ij = 1, ip1jmp1 |
---|
188 | deltap(ij,l) = p(ij,l) - p(ij,l+1) |
---|
189 | ENDDO |
---|
190 | ENDDO |
---|
191 | |
---|
192 | CALL qminimum( q, nq, deltap ) |
---|
193 | c |
---|
194 | c ..... Calcul de la valeur moyenne, unique aux poles pour q ..... |
---|
195 | c |
---|
196 | |
---|
197 | DO iq = 1, nq |
---|
198 | DO l = 1, llm |
---|
199 | |
---|
200 | DO ij = 1, iim |
---|
201 | qppn(ij) = aire( ij ) * q( ij ,l,iq) |
---|
202 | qpps(ij) = aire(ij+ip1jm) * q(ij+ip1jm,l,iq) |
---|
203 | ENDDO |
---|
204 | qpn = SSUM(iim,qppn,1)/apoln |
---|
205 | qps = SSUM(iim,qpps,1)/apols |
---|
206 | |
---|
207 | DO ij = 1, iip1 |
---|
208 | q( ij ,l,iq) = qpn |
---|
209 | q(ij+ip1jm,l,iq) = qps |
---|
210 | ENDDO |
---|
211 | |
---|
212 | ENDDO |
---|
213 | ENDDO |
---|
214 | |
---|
215 | |
---|
216 | CALL SCOPY( ijp1llm , finvmasse, 1, finvmaold, 1 ) |
---|
217 | c |
---|
218 | c |
---|
219 | c ..... FIN de l'integration de q ....... |
---|
220 | |
---|
221 | 15 continue |
---|
222 | |
---|
223 | c ................................................................. |
---|
224 | |
---|
225 | |
---|
226 | IF( leapf ) THEN |
---|
227 | CALL SCOPY ( ip1jmp1 , pscr , 1, psm1 , 1 ) |
---|
228 | CALL SCOPY ( ip1jmp1*llm, massescr, 1, massem1, 1 ) |
---|
229 | END IF |
---|
230 | |
---|
231 | RETURN |
---|
232 | END |
---|