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