[630] | 1 | SUBROUTINE massdair_p( p, masse ) |
---|
[1823] | 2 | USE parallel_lmdz |
---|
[630] | 3 | c |
---|
| 4 | c ********************************************************************* |
---|
| 5 | c .... Calcule la masse d'air dans chaque maille .... |
---|
| 6 | c ********************************************************************* |
---|
| 7 | c |
---|
| 8 | c Auteurs : P. Le Van , Fr. Hourdin . |
---|
| 9 | c .......... |
---|
| 10 | c |
---|
| 11 | c .. p est un argum. d'entree pour le s-pg ... |
---|
| 12 | c .. masse est un argum.de sortie pour le s-pg ... |
---|
| 13 | c |
---|
| 14 | c .... p est defini aux interfaces des llm couches ..... |
---|
| 15 | c |
---|
| 16 | IMPLICIT NONE |
---|
| 17 | c |
---|
| 18 | #include "dimensions.h" |
---|
| 19 | #include "paramet.h" |
---|
| 20 | #include "comgeom.h" |
---|
| 21 | c |
---|
| 22 | c ..... arguments .... |
---|
| 23 | c |
---|
| 24 | REAL p(ip1jmp1,llmp1), masse(ip1jmp1,llm) |
---|
| 25 | |
---|
| 26 | c .... Variables locales ..... |
---|
| 27 | |
---|
| 28 | INTEGER l,ij |
---|
| 29 | INTEGER ijb,ije |
---|
| 30 | REAL massemoyn, massemoys |
---|
| 31 | |
---|
| 32 | REAL SSUM |
---|
| 33 | EXTERNAL SSUM |
---|
| 34 | c |
---|
| 35 | c |
---|
| 36 | c Methode pour calculer massebx et masseby . |
---|
| 37 | c ---------------------------------------- |
---|
| 38 | c |
---|
| 39 | c A chaque point scalaire P (i,j) est affecte 4 coefficients d'aires |
---|
| 40 | c alpha1(i,j) calcule au point ( i+1/4,j-1/4 ) |
---|
| 41 | c alpha2(i,j) calcule au point ( i+1/4,j+1/4 ) |
---|
| 42 | c alpha3(i,j) calcule au point ( i-1/4,j+1/4 ) |
---|
| 43 | c alpha4(i,j) calcule au point ( i-1/4,j-1/4 ) |
---|
| 44 | c |
---|
| 45 | c Avec alpha1(i,j) = aire(i+1/4,j-1/4)/ aire(i,j) |
---|
| 46 | c |
---|
| 47 | c N.B . Pour plus de details, voir s-pg ... iniconst ... |
---|
| 48 | c |
---|
| 49 | c |
---|
| 50 | c |
---|
| 51 | c alpha4 . . alpha1 . alpha4 |
---|
| 52 | c (i,j) (i,j) (i+1,j) |
---|
| 53 | c |
---|
| 54 | c P . U . . P |
---|
| 55 | c (i,j) (i,j) (i+1,j) |
---|
| 56 | c |
---|
| 57 | c alpha3 . . alpha2 .alpha3 |
---|
| 58 | c (i,j) (i,j) (i+1,j) |
---|
| 59 | c |
---|
| 60 | c V . Z . . V |
---|
| 61 | c (i,j) |
---|
| 62 | c |
---|
| 63 | c alpha4 . . alpha1 .alpha4 |
---|
| 64 | c (i,j+1) (i,j+1) (i+1,j+1) |
---|
| 65 | c |
---|
| 66 | c P . U . . P |
---|
| 67 | c (i,j+1) (i+1,j+1) |
---|
| 68 | c |
---|
| 69 | c |
---|
| 70 | c |
---|
| 71 | c On a : |
---|
| 72 | c |
---|
| 73 | c massebx(i,j) = masse(i ,j) * ( alpha1(i ,j) + alpha2(i,j)) + |
---|
| 74 | c masse(i+1,j) * ( alpha3(i+1,j) + alpha4(i+1,j) ) |
---|
| 75 | c localise au point ... U (i,j) ... |
---|
| 76 | c |
---|
| 77 | c masseby(i,j) = masse(i,j ) * ( alpha2(i,j ) + alpha3(i,j ) + |
---|
| 78 | c masse(i,j+1) * ( alpha1(i,j+1) + alpha4(i,j+1) |
---|
| 79 | c localise au point ... V (i,j) ... |
---|
| 80 | c |
---|
| 81 | c |
---|
| 82 | c======================================================================= |
---|
| 83 | |
---|
| 84 | |
---|
| 85 | |
---|
| 86 | |
---|
| 87 | ijb=ij_begin-iip1 |
---|
| 88 | ije=ij_end+2*iip1 |
---|
| 89 | |
---|
| 90 | if (pole_nord) ijb=ij_begin |
---|
| 91 | if (pole_sud) ije=ij_end |
---|
| 92 | |
---|
[764] | 93 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
[630] | 94 | DO 100 l = 1 , llm |
---|
| 95 | c |
---|
| 96 | DO ij = ijb, ije |
---|
| 97 | masse(ij,l) = airesurg(ij) * ( p(ij,l) - p(ij,l+1) ) |
---|
| 98 | ENDDO |
---|
| 99 | c |
---|
| 100 | DO ij = ijb, ije,iip1 |
---|
| 101 | masse(ij+ iim,l) = masse(ij,l) |
---|
| 102 | ENDDO |
---|
| 103 | c |
---|
| 104 | c DO ij = 1, iim |
---|
| 105 | c masse( ij ,l) = masse( ij ,l) * aire( ij ) |
---|
| 106 | c masse(ij+ip1jm,l) = masse(ij+ip1jm,l) * aire(ij+ip1jm) |
---|
| 107 | c ENDDO |
---|
| 108 | c massemoyn = SSUM(iim,masse( 1 ,l),1)/ apoln |
---|
| 109 | c massemoys = SSUM(iim,masse(ip1jm+1,l),1)/ apols |
---|
| 110 | c DO ij = 1, iip1 |
---|
| 111 | c masse( ij ,l ) = massemoyn |
---|
| 112 | c masse(ij+ip1jm,l ) = massemoys |
---|
| 113 | c ENDDO |
---|
| 114 | |
---|
| 115 | 100 CONTINUE |
---|
[764] | 116 | c$OMP END DO NOWAIT |
---|
[630] | 117 | c |
---|
| 118 | RETURN |
---|
| 119 | END |
---|