[3184] | 1 | SUBROUTINE vdif_kc(ngrid,nlay,dt,g,zlev,zlay,u,v,teta,cd,q2,km,kn) |
---|
| 2 | IMPLICIT NONE |
---|
| 3 | c....................................................................... |
---|
| 4 | c |
---|
| 5 | c dt : pas de temps |
---|
| 6 | c g : g |
---|
| 7 | c zlev : altitude a chaque niveau (interface inferieure de la couche |
---|
| 8 | c de meme indice) |
---|
| 9 | c zlay : altitude au centre de chaque couche |
---|
| 10 | c u,v : vitesse au centre de chaque couche |
---|
| 11 | c (en entree : la valeur au debut du pas de temps) |
---|
| 12 | c teta : temperature potentielle au centre de chaque couche |
---|
| 13 | c (en entree : la valeur au debut du pas de temps) |
---|
| 14 | c cd : cdrag |
---|
| 15 | c (en entree : la valeur au debut du pas de temps) |
---|
| 16 | c q2 : $q^2$ au bas de chaque couche |
---|
| 17 | c (en entree : la valeur au debut du pas de temps) |
---|
| 18 | c (en sortie : la valeur a la fin du pas de temps) |
---|
| 19 | c km : diffusivite turbulente de quantite de mouvement (au bas de chaque |
---|
| 20 | c couche) |
---|
| 21 | c (en sortie : la valeur a la fin du pas de temps) |
---|
| 22 | c kn : diffusivite turbulente des scalaires (au bas de chaque couche) |
---|
| 23 | c (en sortie : la valeur a la fin du pas de temps) |
---|
| 24 | c |
---|
| 25 | c....................................................................... |
---|
| 26 | INTEGER,INTENT(IN) :: ngrid |
---|
| 27 | INTEGER,INTENT(IN) :: nlay |
---|
| 28 | REAL,INTENT(IN) :: dt,g |
---|
| 29 | REAL,INTENT(IN) :: zlev(ngrid,nlay+1) |
---|
| 30 | REAL,INTENT(IN) :: zlay(ngrid,nlay) |
---|
| 31 | REAL,INTENT(IN) :: u(ngrid,nlay) |
---|
| 32 | REAL,INTENT(IN) :: v(ngrid,nlay) |
---|
| 33 | REAL,INTENT(IN) :: teta(ngrid,nlay) |
---|
| 34 | REAL,INTENT(IN) :: cd(ngrid) |
---|
| 35 | REAL,INTENT(INOUT) :: q2(ngrid,nlay+1) |
---|
| 36 | REAL,INTENT(OUT) :: km(ngrid,nlay+1) |
---|
| 37 | REAL,INTENT(OUT) :: kn(ngrid,nlay+1) |
---|
| 38 | c....................................................................... |
---|
| 39 | c |
---|
| 40 | c nlay : nombre de couches |
---|
| 41 | c nlev : nombre de niveaux |
---|
| 42 | c ngrid : nombre de points de grille |
---|
| 43 | c unsdz : 1 sur l'epaisseur de couche |
---|
| 44 | c unsdzdec : 1 sur la distance entre le centre de la couche et le |
---|
| 45 | c centre de la couche inferieure |
---|
| 46 | c q : echelle de vitesse au bas de chaque couche |
---|
| 47 | c (valeur a la fin du pas de temps) |
---|
| 48 | c |
---|
| 49 | c....................................................................... |
---|
| 50 | INTEGER :: nlev |
---|
| 51 | REAL unsdz(ngrid,nlay) |
---|
| 52 | REAL unsdzdec(ngrid,nlay+1) |
---|
| 53 | REAL q(ngrid,nlay+1) |
---|
| 54 | c....................................................................... |
---|
| 55 | c |
---|
| 56 | c kmpre : km au debut du pas de temps |
---|
| 57 | c qcstat : q : solution stationnaire du probleme couple |
---|
| 58 | c (valeur a la fin du pas de temps) |
---|
| 59 | c q2cstat : q2 : solution stationnaire du probleme couple |
---|
| 60 | c (valeur a la fin du pas de temps) |
---|
| 61 | c |
---|
| 62 | c....................................................................... |
---|
| 63 | REAL kmpre(ngrid,nlay+1) |
---|
| 64 | REAL qcstat |
---|
| 65 | REAL q2cstat |
---|
| 66 | c....................................................................... |
---|
| 67 | c |
---|
| 68 | c long : longueur de melange calculee selon Blackadar |
---|
| 69 | c |
---|
| 70 | c....................................................................... |
---|
| 71 | REAL long(ngrid,nlay+1) |
---|
| 72 | c....................................................................... |
---|
| 73 | c |
---|
| 74 | c kmq3 : terme en q^3 dans le developpement de km |
---|
| 75 | c (valeur au debut du pas de temps) |
---|
| 76 | c kmcstat : valeur de km solution stationnaire du systeme {q2 ; du/dz} |
---|
| 77 | c (valeur a la fin du pas de temps) |
---|
| 78 | c knq3 : terme en q^3 dans le developpement de kn |
---|
| 79 | c mcstat : valeur de m solution stationnaire du systeme {q2 ; du/dz} |
---|
| 80 | c (valeur a la fin du pas de temps) |
---|
| 81 | c m2cstat : valeur de m2 solution stationnaire du systeme {q2 ; du/dz} |
---|
| 82 | c (valeur a la fin du pas de temps) |
---|
| 83 | c m : valeur a la fin du pas de temps |
---|
| 84 | c mpre : valeur au debut du pas de temps |
---|
| 85 | c m2 : valeur a la fin du pas de temps |
---|
| 86 | c n2 : valeur a la fin du pas de temps |
---|
| 87 | c |
---|
| 88 | c....................................................................... |
---|
| 89 | REAL kmq3 |
---|
| 90 | REAL kmcstat |
---|
| 91 | REAL knq3 |
---|
| 92 | REAL mcstat |
---|
| 93 | REAL m2cstat |
---|
| 94 | REAL m(ngrid,nlay+1) |
---|
| 95 | REAL mpre(ngrid,nlay+1) |
---|
| 96 | REAL m2(ngrid,nlay+1) |
---|
| 97 | REAL n2(ngrid,nlay+1) |
---|
| 98 | c....................................................................... |
---|
| 99 | c |
---|
| 100 | c gn : intermediaire pour les coefficients de stabilite |
---|
| 101 | c gnmin : borne inferieure de gn (-0.23 ou -0.28) |
---|
| 102 | c gnmax : borne superieure de gn (0.0233) |
---|
| 103 | c gninf : vrai si gn est en dessous de sa borne inferieure |
---|
| 104 | c gnsup : vrai si gn est en dessus de sa borne superieure |
---|
| 105 | c gm : drole d'objet bien utile |
---|
| 106 | c ri : nombre de Richardson |
---|
| 107 | c sn : coefficient de stabilite pour n |
---|
| 108 | c snq2 : premier terme du developement limite de sn en q2 |
---|
| 109 | c sm : coefficient de stabilite pour m |
---|
| 110 | c smq2 : premier terme du developement limite de sm en q2 |
---|
| 111 | c |
---|
| 112 | c....................................................................... |
---|
| 113 | REAL gn |
---|
| 114 | REAL,PARAMETER :: gnmin=-10.E+0 |
---|
| 115 | REAL,PARAMETER :: gnmax=0.0233E+0 |
---|
| 116 | LOGICAL gninf |
---|
| 117 | LOGICAL gnsup |
---|
| 118 | REAL gm |
---|
| 119 | c REAL ri(ngrid,nlaye+1) |
---|
| 120 | REAL sn(ngrid,nlay+1) |
---|
| 121 | REAL snq2(ngrid,nlay+1) |
---|
| 122 | REAL sm(ngrid,nlay+1) |
---|
| 123 | REAL smq2(ngrid,nlay+1) |
---|
| 124 | c....................................................................... |
---|
| 125 | c |
---|
| 126 | c kappa : consatnte de Von Karman (0.4) |
---|
| 127 | c long0 : longueur de reference pour le calcul de long (160) |
---|
| 128 | c a1,a2,b1,b2,c1 : constantes d'origine pour les coefficients |
---|
| 129 | c de stabilite (0.92/0.74/16.6/10.1/0.08) |
---|
| 130 | c cn1,cn2 : constantes pour sn |
---|
| 131 | c cm1,cm2,cm3,cm4 : constantes pour sm |
---|
| 132 | c |
---|
| 133 | c....................................................................... |
---|
| 134 | REAL,PARAMETER :: kappa=0.4E+0 |
---|
| 135 | REAL,PARAMETER :: long0=160.E+0 |
---|
| 136 | REAL,PARAMETER :: a1=0.92E+0,a2=0.74E+0 |
---|
| 137 | REAL,PARAMETER :: b1=16.6E+0,b2=10.1E+0,c1=0.08E+0 |
---|
| 138 | REAL,PARAMETER :: cn1=a2*(1.E+0 -6.E+0 *a1/b1) |
---|
| 139 | REAL,PARAMETER :: cn2=-3.E+0 *a2*(6.E+0 *a1+b2) |
---|
| 140 | REAL,PARAMETER :: cm1=a1*(1.E+0 -3.E+0 *c1-6.E+0 *a1/b1) |
---|
| 141 | REAL,PARAMETER :: cm2=a1*(-3.E+0 *a2*((b2-3.E+0 *a2)* |
---|
| 142 | & (1.E+0 -6.E+0 *a1/b1)-3.E+0 *c1*(b2+6.E+0 *a1))) |
---|
| 143 | REAL,PARAMETER :: cm3=-3.E+0 *a2*(6.E+0 *a1+b2) |
---|
| 144 | REAL,PARAMETER :: cm4=-9.E+0 *a1*a2 |
---|
| 145 | c....................................................................... |
---|
| 146 | c |
---|
| 147 | c termq : termes en $q$ dans l'equation de q2 |
---|
| 148 | c termq3 : termes en $q^3$ dans l'equation de q2 |
---|
| 149 | c termqm2 : termes en $q*m^2$ dans l'equation de q2 |
---|
| 150 | c termq3m2 : termes en $q^3*m^2$ dans l'equation de q2 |
---|
| 151 | c |
---|
| 152 | c....................................................................... |
---|
| 153 | REAL termq |
---|
| 154 | REAL termq3 |
---|
| 155 | REAL termqm2 |
---|
| 156 | REAL termq3m2 |
---|
| 157 | c....................................................................... |
---|
| 158 | c |
---|
| 159 | c q2min : borne inferieure de q2 |
---|
| 160 | c q2max : borne superieure de q2 |
---|
| 161 | c |
---|
| 162 | c....................................................................... |
---|
| 163 | REAL,PARAMETER :: q2min=1.E-3 |
---|
| 164 | REAL,PARAMETER :: q2max=1.E+2 |
---|
| 165 | c....................................................................... |
---|
| 166 | c knmin : borne inferieure de kn |
---|
| 167 | c kmmin : borne inferieure de km |
---|
| 168 | c....................................................................... |
---|
| 169 | REAL,PARAMETER :: knmin=1.E-5 |
---|
| 170 | REAL,PARAMETER :: kmmin=1.E-5 |
---|
| 171 | c....................................................................... |
---|
| 172 | INTEGER ilay,ilev,igrid |
---|
| 173 | REAL tmp1,tmp2 |
---|
| 174 | c....................................................................... |
---|
| 175 | c |
---|
| 176 | |
---|
| 177 | ! initialization of local variables: |
---|
| 178 | nlev=nlay+1 |
---|
| 179 | long(:,:)=0. |
---|
| 180 | n2(:,:)=0. |
---|
| 181 | sn(:,:)=0. |
---|
| 182 | snq2(:,:)=0. |
---|
| 183 | sm(:,:)=0. |
---|
| 184 | smq2(:,:)=0. |
---|
| 185 | |
---|
| 186 | c....................................................................... |
---|
| 187 | c traitment des valeur de q2 en entree |
---|
| 188 | c....................................................................... |
---|
| 189 | c |
---|
| 190 | DO ilev=1,nlev |
---|
| 191 | DO igrid=1,ngrid |
---|
| 192 | q2(igrid,ilev)=amax1(q2(igrid,ilev),q2min) |
---|
| 193 | q(igrid,ilev)=sqrt(q2(igrid,ilev)) |
---|
| 194 | ENDDO |
---|
| 195 | ENDDO |
---|
| 196 | c |
---|
| 197 | DO igrid=1,ngrid |
---|
| 198 | tmp1=cd(igrid)*(u(igrid,1)**2+v(igrid,1)**2) |
---|
| 199 | q2(igrid,1)=b1**(2.E+0/3.E+0)*tmp1 |
---|
| 200 | q2(igrid,1)=amax1(q2(igrid,1),q2min) |
---|
| 201 | q(igrid,1)=sqrt(q2(igrid,1)) |
---|
| 202 | ENDDO |
---|
| 203 | c |
---|
| 204 | c....................................................................... |
---|
| 205 | c les increments verticaux |
---|
| 206 | c....................................................................... |
---|
| 207 | c |
---|
| 208 | c!!!!! allerte !!!!!c |
---|
| 209 | c!!!!! zlev n'est pas declare a nlev !!!!!c |
---|
| 210 | c!!!!! ----> |
---|
| 211 | c DO igrid=1,ngrid |
---|
| 212 | c zlev(igrid,nlev)=zlay(igrid,nlay) |
---|
| 213 | c & +( zlay(igrid,nlay) - zlev(igrid,nlev-1) ) |
---|
| 214 | c ENDDO |
---|
| 215 | c!!!!! <---- |
---|
| 216 | c!!!!! allerte !!!!!c |
---|
| 217 | c |
---|
| 218 | DO ilay=1,nlay |
---|
| 219 | DO igrid=1,ngrid |
---|
| 220 | unsdz(igrid,ilay)=1.E+0/(zlev(igrid,ilay+1)-zlev(igrid,ilay)) |
---|
| 221 | ENDDO |
---|
| 222 | ENDDO |
---|
| 223 | |
---|
| 224 | DO igrid=1,ngrid |
---|
| 225 | unsdzdec(igrid,1)=1.E+0/(zlay(igrid,1)-zlev(igrid,1)) |
---|
| 226 | ENDDO |
---|
| 227 | |
---|
| 228 | DO ilay=2,nlay |
---|
| 229 | DO igrid=1,ngrid |
---|
| 230 | unsdzdec(igrid,ilay)=1.E+0/ |
---|
| 231 | & (zlay(igrid,ilay)-zlay(igrid,ilay-1)) |
---|
| 232 | ENDDO |
---|
| 233 | ENDDO |
---|
| 234 | |
---|
| 235 | DO igrid=1,ngrid |
---|
| 236 | unsdzdec(igrid,nlay+1)=1.E+0/ |
---|
| 237 | & (zlev(igrid,nlay+1)-zlay(igrid,nlay)) |
---|
| 238 | ENDDO |
---|
| 239 | c |
---|
| 240 | c....................................................................... |
---|
| 241 | c le cisaillement et le gradient de temperature |
---|
| 242 | c....................................................................... |
---|
| 243 | c |
---|
| 244 | DO igrid=1,ngrid |
---|
| 245 | m2(igrid,1)=(unsdzdec(igrid,1) |
---|
| 246 | & *u(igrid,1))**2 |
---|
| 247 | & +(unsdzdec(igrid,1) |
---|
| 248 | & *v(igrid,1))**2 |
---|
| 249 | m(igrid,1)=sqrt(m2(igrid,1)) |
---|
| 250 | mpre(igrid,1)=m(igrid,1) |
---|
| 251 | ENDDO |
---|
| 252 | c |
---|
| 253 | c----------------------------------------------------------------------- |
---|
| 254 | DO ilev=2,nlev-1 |
---|
| 255 | DO igrid=1,ngrid |
---|
| 256 | c----------------------------------------------------------------------- |
---|
| 257 | c |
---|
| 258 | n2(igrid,ilev)=g*unsdzdec(igrid,ilev) |
---|
| 259 | & *(teta(igrid,ilev)-teta(igrid,ilev-1)) |
---|
| 260 | & /(teta(igrid,ilev)+teta(igrid,ilev-1)) *2.E+0 |
---|
| 261 | c |
---|
| 262 | c ---> |
---|
| 263 | c on ne sais traiter que les cas stratifies. et l'ajustement |
---|
| 264 | c convectif est cense faire en sorte que seul des configurations |
---|
| 265 | c stratifiees soient rencontrees en entree de cette routine. |
---|
| 266 | c mais, bon ... on sait jamais (meme on sait que n2 prends |
---|
| 267 | c quelques valeurs negatives ... parfois) alors : |
---|
| 268 | c<--- |
---|
| 269 | c |
---|
| 270 | IF (n2(igrid,ilev).lt.0.E+0) THEN |
---|
| 271 | n2(igrid,ilev)=0.E+0 |
---|
| 272 | ENDIF |
---|
| 273 | c |
---|
| 274 | m2(igrid,ilev)=(unsdzdec(igrid,ilev) |
---|
| 275 | & *(u(igrid,ilev)-u(igrid,ilev-1)))**2 |
---|
| 276 | & +(unsdzdec(igrid,ilev) |
---|
| 277 | & *(v(igrid,ilev)-v(igrid,ilev-1)))**2 |
---|
| 278 | m(igrid,ilev)=sqrt(m2(igrid,ilev)) |
---|
| 279 | mpre(igrid,ilev)=m(igrid,ilev) |
---|
| 280 | c |
---|
| 281 | c----------------------------------------------------------------------- |
---|
| 282 | ENDDO |
---|
| 283 | ENDDO |
---|
| 284 | c----------------------------------------------------------------------- |
---|
| 285 | c |
---|
| 286 | DO igrid=1,ngrid |
---|
| 287 | m2(igrid,nlev)=m2(igrid,nlev-1) |
---|
| 288 | m(igrid,nlev)=m(igrid,nlev-1) |
---|
| 289 | mpre(igrid,nlev)=m(igrid,nlev) |
---|
| 290 | ENDDO |
---|
| 291 | |
---|
| 292 | c |
---|
| 293 | c....................................................................... |
---|
| 294 | c calcul des fonctions de stabilite |
---|
| 295 | c....................................................................... |
---|
| 296 | c |
---|
| 297 | c----------------------------------------------------------------------- |
---|
| 298 | DO ilev=2,nlev-1 |
---|
| 299 | DO igrid=1,ngrid |
---|
| 300 | c----------------------------------------------------------------------- |
---|
| 301 | c |
---|
| 302 | tmp1=kappa*(zlev(igrid,ilev)-zlev(igrid,1)) |
---|
| 303 | long(igrid,ilev)=tmp1/(1.E+0 + tmp1/long0) |
---|
| 304 | gn=-long(igrid,ilev)**2 / q2(igrid,ilev) |
---|
| 305 | & * n2(igrid,ilev) |
---|
| 306 | gm=long(igrid,ilev)**2 / q2(igrid,ilev) |
---|
| 307 | & * m2(igrid,ilev) |
---|
| 308 | c |
---|
| 309 | gninf=.false. |
---|
| 310 | gnsup=.false. |
---|
| 311 | long(igrid,ilev)=long(igrid,ilev) |
---|
| 312 | long(igrid,ilev)=long(igrid,ilev) |
---|
| 313 | c |
---|
| 314 | IF (gn.lt.gnmin) THEN |
---|
| 315 | gninf=.true. |
---|
| 316 | gn=gnmin |
---|
| 317 | ENDIF |
---|
| 318 | c |
---|
| 319 | IF (gn.gt.gnmax) THEN |
---|
| 320 | gnsup=.true. |
---|
| 321 | gn=gnmax |
---|
| 322 | ENDIF |
---|
| 323 | c |
---|
| 324 | sn(igrid,ilev)=cn1/(1.E+0 +cn2*gn) |
---|
| 325 | sm(igrid,ilev)= |
---|
| 326 | & (cm1+cm2*gn) |
---|
| 327 | & /( (1.E+0 +cm3*gn) |
---|
| 328 | & *(1.E+0 +cm4*gn) ) |
---|
| 329 | c |
---|
| 330 | IF ((gninf).or.(gnsup)) THEN |
---|
| 331 | snq2(igrid,ilev)=0.E+0 |
---|
| 332 | smq2(igrid,ilev)=0.E+0 |
---|
| 333 | ELSE |
---|
| 334 | snq2(igrid,ilev)= |
---|
| 335 | & -gn |
---|
| 336 | & *(-cn1*cn2/(1.E+0 +cn2*gn)**2 ) |
---|
| 337 | smq2(igrid,ilev)= |
---|
| 338 | & -gn |
---|
| 339 | & *( cm2*(1.E+0 +cm3*gn) |
---|
| 340 | & *(1.E+0 +cm4*gn) |
---|
| 341 | & -( cm3*(1.E+0 +cm4*gn) |
---|
| 342 | & +cm4*(1.E+0 +cm3*gn) ) |
---|
| 343 | & *(cm1+cm2*gn) ) |
---|
| 344 | & /( (1.E+0 +cm3*gn) |
---|
| 345 | & *(1.E+0 +cm4*gn) )**2 |
---|
| 346 | ENDIF |
---|
| 347 | c |
---|
| 348 | c ---> |
---|
| 349 | c la decomposition de Taylor en q2 n'a de sens que |
---|
| 350 | c dans les cas stratifies ou sn et sm sont quasi |
---|
| 351 | c proportionnels a q2. ailleurs on laisse le meme |
---|
| 352 | c algorithme car l'ajustement convectif fait le travail. |
---|
| 353 | c mais c'est delirant quand sn et snq2 n'ont pas le meme |
---|
| 354 | c signe : dans ces cas, on ne fait pas la decomposition. |
---|
| 355 | c<--- |
---|
| 356 | c |
---|
| 357 | IF (snq2(igrid,ilev)*sn(igrid,ilev).le.0.E+0) |
---|
| 358 | & snq2(igrid,ilev)=0.E+0 |
---|
| 359 | IF (smq2(igrid,ilev)*sm(igrid,ilev).le.0.E+0) |
---|
| 360 | & smq2(igrid,ilev)=0.E+0 |
---|
| 361 | c |
---|
| 362 | c----------------------------------------------------------------------- |
---|
| 363 | ENDDO ! of DO igrid=1,ngrid |
---|
| 364 | ENDDO ! of DO ilev=2,nlev-1 |
---|
| 365 | c----------------------------------------------------------------------- |
---|
| 366 | c |
---|
| 367 | c....................................................................... |
---|
| 368 | c calcul de km et kn au debut du pas de temps |
---|
| 369 | c....................................................................... |
---|
| 370 | c |
---|
| 371 | DO igrid=1,ngrid |
---|
| 372 | kn(igrid,1)=knmin |
---|
| 373 | km(igrid,1)=kmmin |
---|
| 374 | kmpre(igrid,1)=km(igrid,1) |
---|
| 375 | ENDDO |
---|
| 376 | c |
---|
| 377 | c----------------------------------------------------------------------- |
---|
| 378 | DO ilev=2,nlev-1 |
---|
| 379 | DO igrid=1,ngrid |
---|
| 380 | kn(igrid,ilev)=long(igrid,ilev)*q(igrid,ilev) |
---|
| 381 | & *sn(igrid,ilev) |
---|
| 382 | km(igrid,ilev)=long(igrid,ilev)*q(igrid,ilev) |
---|
| 383 | & *sm(igrid,ilev) |
---|
| 384 | kmpre(igrid,ilev)=km(igrid,ilev) |
---|
| 385 | ENDDO |
---|
| 386 | ENDDO |
---|
| 387 | c----------------------------------------------------------------------- |
---|
| 388 | c |
---|
| 389 | DO igrid=1,ngrid |
---|
| 390 | kn(igrid,nlev)=kn(igrid,nlev-1) |
---|
| 391 | km(igrid,nlev)=km(igrid,nlev-1) |
---|
| 392 | kmpre(igrid,nlev)=km(igrid,nlev) |
---|
| 393 | ENDDO |
---|
| 394 | c |
---|
| 395 | c....................................................................... |
---|
| 396 | c boucle sur les niveaux 2 a nlev-1 |
---|
| 397 | c....................................................................... |
---|
| 398 | c |
---|
| 399 | c----> |
---|
| 400 | DO 10001 ilev=2,nlev-1 |
---|
| 401 | c----> |
---|
| 402 | DO 10002 igrid=1,ngrid |
---|
| 403 | c |
---|
| 404 | c....................................................................... |
---|
| 405 | c |
---|
| 406 | c calcul des termes sources et puits de l'equation de q2 |
---|
| 407 | c ------------------------------------------------------ |
---|
| 408 | c |
---|
| 409 | knq3=kn(igrid,ilev)*snq2(igrid,ilev) |
---|
| 410 | & /sn(igrid,ilev) |
---|
| 411 | kmq3=km(igrid,ilev)*smq2(igrid,ilev) |
---|
| 412 | & /sm(igrid,ilev) |
---|
| 413 | c |
---|
| 414 | termq=0.E+0 |
---|
| 415 | termq3=0.E+0 |
---|
| 416 | termqm2=0.E+0 |
---|
| 417 | termq3m2=0.E+0 |
---|
| 418 | c |
---|
| 419 | tmp1=dt*2.E+0 *km(igrid,ilev)*m2(igrid,ilev) |
---|
| 420 | tmp2=dt*2.E+0 *kmq3*m2(igrid,ilev) |
---|
| 421 | termqm2=termqm2 |
---|
| 422 | & +dt*2.E+0 *km(igrid,ilev)*m2(igrid,ilev) |
---|
| 423 | & -dt*2.E+0 *kmq3*m2(igrid,ilev) |
---|
| 424 | termq3m2=termq3m2 |
---|
| 425 | & +dt*2.E+0 *kmq3*m2(igrid,ilev) |
---|
| 426 | c |
---|
| 427 | termq=termq |
---|
| 428 | & -dt*2.E+0 *kn(igrid,ilev)*n2(igrid,ilev) |
---|
| 429 | & +dt*2.E+0 *knq3*n2(igrid,ilev) |
---|
| 430 | termq3=termq3 |
---|
| 431 | & -dt*2.E+0 *knq3*n2(igrid,ilev) |
---|
| 432 | c |
---|
| 433 | termq3=termq3 |
---|
| 434 | & -dt*2.E+0 *q(igrid,ilev)**3 / (b1*long(igrid,ilev)) |
---|
| 435 | c |
---|
| 436 | c....................................................................... |
---|
| 437 | c |
---|
| 438 | c resolution stationnaire couplee avec le gradient de vitesse local |
---|
| 439 | c ----------------------------------------------------------------- |
---|
| 440 | c |
---|
| 441 | c -----{on cherche le cisaillement qui annule l'equation de q^2 |
---|
| 442 | c supposee en q3} |
---|
| 443 | c |
---|
| 444 | tmp1=termq+termq3 |
---|
| 445 | tmp2=termqm2+termq3m2 |
---|
| 446 | m2cstat=m2(igrid,ilev) |
---|
| 447 | & -(tmp1+tmp2)/(dt*2.E+0*km(igrid,ilev)) |
---|
| 448 | mcstat=sqrt(m2cstat) |
---|
| 449 | c |
---|
| 450 | c -----{puis on ecrit la valeur de q qui annule l'equation de m |
---|
| 451 | c supposee en q3} |
---|
| 452 | c |
---|
| 453 | IF (ilev.eq.2) THEN |
---|
| 454 | kmcstat=1.E+0 / mcstat |
---|
| 455 | & *( unsdz(igrid,ilev)*kmpre(igrid,ilev+1) |
---|
| 456 | & *mpre(igrid,ilev+1) |
---|
| 457 | & +unsdz(igrid,ilev-1) |
---|
| 458 | & *cd(igrid) |
---|
| 459 | & *( sqrt(u(igrid,3)**2+v(igrid,3)**2) |
---|
| 460 | & -mcstat/unsdzdec(igrid,ilev) |
---|
| 461 | & -mpre(igrid,ilev+1)/unsdzdec(igrid,ilev+1) )**2) |
---|
| 462 | & /( unsdz(igrid,ilev)+unsdz(igrid,ilev-1) ) |
---|
| 463 | ELSE |
---|
| 464 | kmcstat=1.E+0 / mcstat |
---|
| 465 | & *( unsdz(igrid,ilev)*kmpre(igrid,ilev+1) |
---|
| 466 | & *mpre(igrid,ilev+1) |
---|
| 467 | & +unsdz(igrid,ilev-1)*kmpre(igrid,ilev-1) |
---|
| 468 | & *mpre(igrid,ilev-1) ) |
---|
| 469 | & /( unsdz(igrid,ilev)+unsdz(igrid,ilev-1) ) |
---|
| 470 | ENDIF |
---|
| 471 | tmp2=kmcstat |
---|
| 472 | & /( sm(igrid,ilev)/q2(igrid,ilev) ) |
---|
| 473 | & /long(igrid,ilev) |
---|
| 474 | qcstat=tmp2**(1.E+0/3.E+0) |
---|
| 475 | q2cstat=qcstat**2 |
---|
| 476 | c |
---|
| 477 | c....................................................................... |
---|
| 478 | c |
---|
| 479 | c choix de la solution finale |
---|
| 480 | c --------------------------- |
---|
| 481 | c |
---|
| 482 | q(igrid,ilev)=qcstat |
---|
| 483 | q2(igrid,ilev)=q2cstat |
---|
| 484 | m(igrid,ilev)=mcstat |
---|
| 485 | m2(igrid,ilev)=m2cstat |
---|
| 486 | c |
---|
| 487 | c ---> |
---|
| 488 | c pour des raisons simples q2 est minore |
---|
| 489 | c<--- |
---|
| 490 | c |
---|
| 491 | IF (q2(igrid,ilev).lt.q2min) THEN |
---|
| 492 | q2(igrid,ilev)=q2min |
---|
| 493 | q(igrid,ilev)=sqrt(q2min) |
---|
| 494 | ENDIF |
---|
| 495 | c |
---|
| 496 | c....................................................................... |
---|
| 497 | c |
---|
| 498 | c calcul final de kn et km |
---|
| 499 | c ------------------------ |
---|
| 500 | c |
---|
| 501 | gn=-long(igrid,ilev)**2 / q2(igrid,ilev) |
---|
| 502 | & * n2(igrid,ilev) |
---|
| 503 | IF (gn.lt.gnmin) gn=gnmin |
---|
| 504 | IF (gn.gt.gnmax) gn=gnmax |
---|
| 505 | sn(igrid,ilev)=cn1/(1.E+0 +cn2*gn) |
---|
| 506 | sm(igrid,ilev)= |
---|
| 507 | & (cm1+cm2*gn) |
---|
| 508 | & /( (1.E+0 +cm3*gn)*(1.E+0 +cm4*gn) ) |
---|
| 509 | kn(igrid,ilev)=long(igrid,ilev)*q(igrid,ilev) |
---|
| 510 | & *sn(igrid,ilev) |
---|
| 511 | km(igrid,ilev)=long(igrid,ilev)*q(igrid,ilev) |
---|
| 512 | & *sm(igrid,ilev) |
---|
| 513 | c |
---|
| 514 | c....................................................................... |
---|
| 515 | c |
---|
| 516 | 10002 CONTINUE |
---|
| 517 | c |
---|
| 518 | 10001 CONTINUE |
---|
| 519 | c |
---|
| 520 | c....................................................................... |
---|
| 521 | c |
---|
| 522 | c |
---|
| 523 | DO igrid=1,ngrid |
---|
| 524 | kn(igrid,1)=knmin |
---|
| 525 | km(igrid,1)=kmmin |
---|
| 526 | q2(igrid,nlev)=q2(igrid,nlev-1) |
---|
| 527 | q(igrid,nlev)=q(igrid,nlev-1) |
---|
| 528 | kn(igrid,nlev)=kn(igrid,nlev-1) |
---|
| 529 | km(igrid,nlev)=km(igrid,nlev-1) |
---|
| 530 | ENDDO |
---|
| 531 | |
---|
| 532 | END |
---|