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