source: LMDZ6/branches/Amaury_dev/libf/dyn3d_common/massdair.f90 @ 5134

Last change on this file since 5134 was 5134, checked in by abarral, 4 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
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
1
2! $Header$
3
4SUBROUTINE massdair( p, masse )
5  !
6  ! *********************************************************************
7  !   ....  Calcule la masse d'air  dans chaque maille   ....
8  ! *********************************************************************
9  !
10  !    Auteurs : P. Le Van , Fr. Hourdin  .
11  !   ..........
12  !
13  !  ..    p                      est  un argum. d'entree pour le s-pg ...
14  !  ..  masse                    est un  argum.de sortie pour le s-pg ...
15  !
16  !  ....  p est defini aux interfaces des llm couches   .....
17  !
18  IMPLICIT NONE
19  !
20  INCLUDE "dimensions.h"
21  INCLUDE "paramet.h"
22  INCLUDE "comgeom.h"
23  !
24  !  .....   arguments  ....
25  !
26  REAL :: p(ip1jmp1,llmp1), masse(ip1jmp1,llm)
27
28  !   ....  Variables locales  .....
29
30  INTEGER :: l,ij
31  REAL :: massemoyn, massemoys
32
33  !
34  !
35  !   Methode pour calculer massebx et masseby .
36  !   ----------------------------------------
37  !
38  !    A chaque point scalaire P (i,j) est affecte 4 coefficients d'aires
39  !   alpha1(i,j)  calcule  au point ( i+1/4,j-1/4 )
40  !   alpha2(i,j)  calcule  au point ( i+1/4,j+1/4 )
41  !   alpha3(i,j)  calcule  au point ( i-1/4,j+1/4 )
42  !   alpha4(i,j)  calcule  au point ( i-1/4,j-1/4 )
43  !
44  !    Avec  alpha1(i,j) = aire(i+1/4,j-1/4)/ aire(i,j)
45  !
46  !    N.B .  Pour plus de details, voir s-pg  ...  iniconst ...
47  !
48  !
49  !
50  !   alpha4 .         . alpha1    . alpha4
51  !    (i,j)             (i,j)       (i+1,j)
52  !
53  !         P .        U .          . P
54  !       (i,j)       (i,j)         (i+1,j)
55  !
56  !   alpha3 .         . alpha2    .alpha3
57  !    (i,j)              (i,j)     (i+1,j)
58  !
59  !         V .        Z .          . V
60  !       (i,j)
61  !
62  !   alpha4 .         . alpha1    .alpha4
63  !   (i,j+1)            (i,j+1)   (i+1,j+1)
64  !
65  !         P .        U .          . P
66  !      (i,j+1)                    (i+1,j+1)
67  !
68  !
69  !
70  !                   On  a :
71  !
72  !    massebx(i,j) = masse(i  ,j) * ( alpha1(i  ,j) + alpha2(i,j))   +
73  !               masse(i+1,j) * ( alpha3(i+1,j) + alpha4(i+1,j) )
74  ! localise  au point  ... U (i,j) ...
75  !
76  !    masseby(i,j) = masse(i,j  ) * ( alpha2(i,j  ) + alpha3(i,j  )  +
77  !               masse(i,j+1) * ( alpha1(i,j+1) + alpha4(i,j+1)
78  ! localise  au point  ... V (i,j) ...
79  !
80  !
81  !=======================================================================
82
83  DO   l = 1 , llm
84  !
85    DO    ij     = 1, ip1jmp1
86     masse(ij,l) = airesurg(ij) * ( p(ij,l) - p(ij,l+1) )
87    ENDDO
88  !
89    DO   ij = 1, ip1jmp1,iip1
90     masse(ij+ iim,l) = masse(ij,l)
91    ENDDO
92  !
93  !   DO    ij     = 1,  iim
94  !    masse(   ij   ,l) = masse(   ij   ,l) * aire(  ij    )
95  !    masse(ij+ip1jm,l) = masse(ij+ip1jm,l) * aire(ij+ip1jm)
96  !   ENDDO
97  !    massemoyn         = SSUM(iim,masse(   1   ,l),1)/ apoln
98  !    massemoys         = SSUM(iim,masse(ip1jm+1,l),1)/ apols
99  !   DO    ij     = 1, iip1
100  !    masse(   ij   ,l )    = massemoyn
101  !    masse(ij+ip1jm,l )    = massemoys
102  !   ENDDO
103
104  END DO
105  !
106  RETURN
107END SUBROUTINE massdair
Note: See TracBrowser for help on using the repository browser.