1 | ! |
---|
2 | ! $Header$ |
---|
3 | ! |
---|
4 | SUBROUTINE pbar ( pext, pbarx, pbary, pbarxy ) |
---|
5 | USE dimensions_mod, ONLY: iim, jjm, llm, ndm |
---|
6 | USE paramet_mod_h, ONLY: iip1, iip2, iip3, jjp1, llmp1, llmp2, llmm1, kftd, ip1jm, ip1jmp1, & |
---|
7 | ip1jmi1, ijp1llm, ijmllm, mvar, jcfil, jcfllm |
---|
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 | ! pext est un argum. d'entree pour le s-pg .. |
---|
23 | ! pbarx,pbary et pbarxy sont des 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 | INCLUDE "comgeom.h" |
---|
80 | |
---|
81 | REAL :: pext( ip1jmp1 ), pbarx ( ip1jmp1 ) |
---|
82 | REAL :: pbary( ip1jm ), pbarxy( ip1jm ) |
---|
83 | |
---|
84 | INTEGER :: ij |
---|
85 | |
---|
86 | |
---|
87 | |
---|
88 | DO ij = 1, ip1jmp1 - 1 |
---|
89 | pbarx( ij ) = pext(ij) * alpha1p2(ij) + pext(ij+1)*alpha3p4(ij+1) |
---|
90 | END DO |
---|
91 | |
---|
92 | ! .... correction pour pbarx( iip1,j) ..... |
---|
93 | |
---|
94 | ! ... pbarx(iip1,j)= pbarx(1,j) ... |
---|
95 | !DIR$ IVDEP |
---|
96 | DO ij = iip1, ip1jmp1, iip1 |
---|
97 | pbarx( ij ) = pbarx( ij - iim ) |
---|
98 | END DO |
---|
99 | |
---|
100 | |
---|
101 | DO ij = 1,ip1jm |
---|
102 | pbary( ij ) = pext( ij ) * alpha2p3( ij ) + & |
---|
103 | pext( ij+iip1 ) * alpha1p4( ij+iip1 ) |
---|
104 | END DO |
---|
105 | |
---|
106 | |
---|
107 | DO ij = 1, ip1jm - 1 |
---|
108 | pbarxy( ij ) = pext(ij)*alpha2(ij) + pext(ij+1)*alpha3(ij+1) + & |
---|
109 | pext(ij+iip1)*alpha1(ij+iip1) + pext(ij+iip2)*alpha4(ij+iip2) |
---|
110 | END DO |
---|
111 | |
---|
112 | |
---|
113 | ! .... correction pour pbarxy( iip1,j ) ........ |
---|
114 | |
---|
115 | !DIR$ IVDEP |
---|
116 | |
---|
117 | DO ij = iip1, ip1jm, iip1 |
---|
118 | pbarxy( ij ) = pbarxy( ij - iim ) |
---|
119 | END DO |
---|
120 | |
---|
121 | |
---|
122 | RETURN |
---|
123 | END SUBROUTINE pbar |
---|