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