source: LMDZ6/branches/Amaury_dev/libf/dyn3dmem/massdair_loc.f90 @ 5134

Last change on this file since 5134 was 5134, checked in by abarral, 3 months ago

Replace academic.h, alpale.h, comdissip.h, comdissipn.h, comdissnew.h by modules
Remove unused clesph0.h

  • Property copyright set to
    Name of program: LMDZ
    Creation date: 1984
    Version: LMDZ5
    License: CeCILL version 2
    Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
    See the license file in the root directory
File size: 3.1 KB
Line 
1SUBROUTINE massdair_loc( p, masse )
2  USE parallel_lmdz
3  !
4  ! *********************************************************************
5  !   ....  Calcule la masse d'air  dans chaque maille   ....
6  ! *********************************************************************
7  !
8  !    Auteurs : P. Le Van , Fr. Hourdin  .
9  !   ..........
10  !
11  !  ..    p                      est  un argum. d'entree pour le s-pg ...
12  !  ..  masse                    est un  argum.de sortie pour le s-pg ...
13  !
14  !  ....  p est defini aux interfaces des llm couches   .....
15  !
16  IMPLICIT NONE
17  !
18  INCLUDE "dimensions.h"
19  INCLUDE "paramet.h"
20  INCLUDE "comgeom.h"
21  !
22  !  .....   arguments  ....
23  !
24  REAL :: p(ijb_u:ije_u,llmp1), masse(ijb_u:ije_u,llm)
25
26  !   ....  Variables locales  .....
27
28  INTEGER :: l,ij
29  INTEGER :: ijb,ije
30  REAL :: massemoyn, massemoys
31
32  !
33  !
34  !   Methode pour calculer massebx et masseby .
35  !   ----------------------------------------
36  !
37  !    A chaque point scalaire P (i,j) est affecte 4 coefficients d'aires
38  !   alpha1(i,j)  calcule  au point ( i+1/4,j-1/4 )
39  !   alpha2(i,j)  calcule  au point ( i+1/4,j+1/4 )
40  !   alpha3(i,j)  calcule  au point ( i-1/4,j+1/4 )
41  !   alpha4(i,j)  calcule  au point ( i-1/4,j-1/4 )
42  !
43  !    Avec  alpha1(i,j) = aire(i+1/4,j-1/4)/ aire(i,j)
44  !
45  !    N.B .  Pour plus de details, voir s-pg  ...  iniconst ...
46  !
47  !
48  !
49  !   alpha4 .         . alpha1    . alpha4
50  !    (i,j)             (i,j)       (i+1,j)
51  !
52  !         P .        U .          . P
53  !       (i,j)       (i,j)         (i+1,j)
54  !
55  !   alpha3 .         . alpha2    .alpha3
56  !    (i,j)              (i,j)     (i+1,j)
57  !
58  !         V .        Z .          . V
59  !       (i,j)
60  !
61  !   alpha4 .         . alpha1    .alpha4
62  !   (i,j+1)            (i,j+1)   (i+1,j+1)
63  !
64  !         P .        U .          . P
65  !      (i,j+1)                    (i+1,j+1)
66  !
67  !
68  !
69  !                   On  a :
70  !
71  !    massebx(i,j) = masse(i  ,j) * ( alpha1(i  ,j) + alpha2(i,j))   +
72  !               masse(i+1,j) * ( alpha3(i+1,j) + alpha4(i+1,j) )
73  ! localise  au point  ... U (i,j) ...
74  !
75  !    masseby(i,j) = masse(i,j  ) * ( alpha2(i,j  ) + alpha3(i,j  )  +
76  !               masse(i,j+1) * ( alpha1(i,j+1) + alpha4(i,j+1)
77  ! localise  au point  ... V (i,j) ...
78  !
79  !
80  !=======================================================================
81
82
83
84
85  ijb=ij_begin-iip1
86  ije=ij_end+2*iip1
87
88  IF (pole_nord) ijb=ij_begin
89  IF (pole_sud)  ije=ij_end
90
91!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
92  DO   l = 1 , llm
93  !
94    DO    ij     = ijb, ije
95     masse(ij,l) = airesurg(ij) * ( p(ij,l) - p(ij,l+1) )
96    ENDDO
97  !
98    DO   ij = ijb, ije,iip1
99     masse(ij+ iim,l) = masse(ij,l)
100    ENDDO
101  !
102  !   DO    ij     = 1,  iim
103  !    masse(   ij   ,l) = masse(   ij   ,l) * aire(  ij    )
104  !    masse(ij+ip1jm,l) = masse(ij+ip1jm,l) * aire(ij+ip1jm)
105  !   ENDDO
106  !    massemoyn         = SSUM(iim,masse(   1   ,l),1)/ apoln
107  !    massemoys         = SSUM(iim,masse(ip1jm+1,l),1)/ apols
108  !   DO    ij     = 1, iip1
109  !    masse(   ij   ,l )    = massemoyn
110  !    masse(ij+ip1jm,l )    = massemoys
111  !   ENDDO
112
113  END DO
114!$OMP END DO NOWAIT
115  !
116
117END SUBROUTINE massdair_loc
Note: See TracBrowser for help on using the repository browser.