1 | SUBROUTINE massbar( masse, massebx, masseby ) |
---|
2 | c |
---|
3 | c ********************************************************************** |
---|
4 | c |
---|
5 | c Calcule les moyennes en x et y de la masse d'air dans chaque maille. |
---|
6 | c ********************************************************************** |
---|
7 | c Auteurs : P. Le Van , Fr. Hourdin . |
---|
8 | c .......... |
---|
9 | c |
---|
10 | c .. masse est un argum. d'entree pour le s-pg ... |
---|
11 | c .. massebx,masseby sont des argum. de sortie pour le s-pg ... |
---|
12 | c |
---|
13 | c |
---|
14 | c IMPLICIT NONE |
---|
15 | c |
---|
16 | #include "dimensions.h" |
---|
17 | #include "paramet.h" |
---|
18 | #include "comconst.h" |
---|
19 | #include "comgeom.h" |
---|
20 | c |
---|
21 | REAL masse( ip1jmp1,llm ), massebx( ip1jmp1,llm ) , |
---|
22 | * masseby( ip1jm,llm ) |
---|
23 | c |
---|
24 | c |
---|
25 | c Methode pour calculer massebx et masseby . |
---|
26 | c ---------------------------------------- |
---|
27 | c |
---|
28 | c A chaque point scalaire P (i,j) est affecte 4 coefficients d'aires |
---|
29 | c alpha1(i,j) calcule au point ( i+1/4,j-1/4 ) |
---|
30 | c alpha2(i,j) calcule au point ( i+1/4,j+1/4 ) |
---|
31 | c alpha3(i,j) calcule au point ( i-1/4,j+1/4 ) |
---|
32 | c alpha4(i,j) calcule au point ( i-1/4,j-1/4 ) |
---|
33 | c |
---|
34 | c Avec alpha1(i,j) = aire(i+1/4,j-1/4)/ aire(i,j) |
---|
35 | c |
---|
36 | c N.B . Pour plus de details, voir s-pg ... iniconst ... |
---|
37 | c |
---|
38 | c |
---|
39 | c |
---|
40 | c alpha4 . . alpha1 . alpha4 |
---|
41 | c (i,j) (i,j) (i+1,j) |
---|
42 | c |
---|
43 | c P . U . . P |
---|
44 | c (i,j) (i,j) (i+1,j) |
---|
45 | c |
---|
46 | c alpha3 . . alpha2 .alpha3 |
---|
47 | c (i,j) (i,j) (i+1,j) |
---|
48 | c |
---|
49 | c V . Z . . V |
---|
50 | c (i,j) |
---|
51 | c |
---|
52 | c alpha4 . . alpha1 .alpha4 |
---|
53 | c (i,j+1) (i,j+1) (i+1,j+1) |
---|
54 | c |
---|
55 | c P . U . . P |
---|
56 | c (i,j+1) (i+1,j+1) |
---|
57 | c |
---|
58 | c |
---|
59 | c |
---|
60 | c On a : |
---|
61 | c |
---|
62 | c massebx(i,j) = masse(i ,j) * ( alpha1(i ,j) + alpha2(i,j)) + |
---|
63 | c masse(i+1,j) * ( alpha3(i+1,j) + alpha4(i+1,j) ) |
---|
64 | c localise au point ... U (i,j) ... |
---|
65 | c |
---|
66 | c masseby(i,j) = masse(i,j ) * ( alpha2(i,j ) + alpha3(i,j ) + |
---|
67 | c masse(i,j+1) * ( alpha1(i,j+1) + alpha4(i,j+1) |
---|
68 | c localise au point ... V (i,j) ... |
---|
69 | c |
---|
70 | c |
---|
71 | c======================================================================= |
---|
72 | |
---|
73 | DO 100 l = 1 , llm |
---|
74 | c |
---|
75 | DO ij = 1, ip1jmp1 - 1 |
---|
76 | massebx(ij,l) = masse( ij, l) * alpha1p2( ij ) + |
---|
77 | * masse(ij+1, l) * alpha3p4(ij+1 ) |
---|
78 | ENDDO |
---|
79 | |
---|
80 | c .... correction pour massebx( iip1,j) ..... |
---|
81 | c ... massebx(iip1,j)= massebx(1,j) ... |
---|
82 | c |
---|
83 | CDIR$ IVDEP |
---|
84 | DO ij = iip1, ip1jmp1, iip1 |
---|
85 | massebx( ij,l ) = massebx( ij - iim,l ) |
---|
86 | ENDDO |
---|
87 | |
---|
88 | |
---|
89 | DO ij = 1,ip1jm |
---|
90 | masseby( ij,l ) = masse( ij , l ) * alpha2p3( ij ) + |
---|
91 | * masse(ij+iip1, l ) * alpha1p4( ij+iip1 ) |
---|
92 | ENDDO |
---|
93 | |
---|
94 | 100 CONTINUE |
---|
95 | c |
---|
96 | RETURN |
---|
97 | END |
---|