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