source: LMDZ6/trunk/libf/dyn3dmem/flumass_loc.f90 @ 5300

Last change on this file since 5300 was 5285, checked in by abarral, 4 days ago

As discussed internally, remove generic ONLY: ... for new _mod_h modules

  • 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.2 KB
Line 
1SUBROUTINE flumass_loc(massebx,masseby, vcont, ucont, pbaru, pbarv )
2!
3!-------------------------------------------------------------------------------
4! Authors: P. Le Van , Fr. Hourdin.
5!-------------------------------------------------------------------------------
6! Purpose: Compute mass flux at s levels.
7  USE comgeom_mod_h
8  USE parallel_lmdz
9  USE dimensions_mod, ONLY: iim, jjm, llm, ndm
10USE paramet_mod_h
11IMPLICIT NONE
12
13
14!===============================================================================
15! Arguments:
16  REAL, INTENT(IN)  :: massebx(ijb_u:ije_u,llm)
17  REAL, INTENT(IN)  :: masseby(ijb_v:ije_v,llm)
18  REAL, INTENT(IN)  :: vcont  (ijb_v:ije_v,llm)
19  REAL, INTENT(IN)  :: ucont  (ijb_u:ije_u,llm)
20  REAL, INTENT(OUT) :: pbaru  (ijb_u:ije_u,llm)
21  REAL, INTENT(OUT) :: pbarv  (ijb_v:ije_v,llm)
22!===============================================================================
23! Method used:   A 2 equations system is solved.
24!   * 1st one describes divergence computation at pole point nr. i (i=1 to im):
25!     (0.5*(pbaru(i)-pbaru(i-1))-pbarv(i))/aire(i) = - SUM(pbarv(n))/aire pole
26!   * 2nd one specifies that mean mass flux at pole is equal to 0:
27!     SUM(pbaru(n)*local_area(n))=0
28! This way, we determine additive constant common to pbary elements representing
29!   pbaru(0,j,l) in divergence computation equation for point i=1. (i=1 to im)
30!===============================================================================
31! Local variables:
32  REAL    :: sairen, saireun, ctn, ctn0, apbarun(iim)
33  REAL    :: saires, saireus, cts, cts0, apbarus(iim)
34  INTEGER :: l, i, ij, ijb, ije
35!===============================================================================
36!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)   
37  DO l=1,llm
38
39    ijb=ij_begin
40    ije=ij_end+iip1
41    IF(pole_nord) ijb=ij_begin+iip1
42    IF(pole_sud)  ije=ij_end-iip1
43    pbaru(ijb:ije,l)=massebx(ijb:ije,l)*ucont(ijb:ije,l)
44
45    ijb=ij_begin-iip1
46    ije=ij_end+iip1
47    IF(pole_nord) ijb=ij_begin
48    IF(pole_sud)  ije=ij_end-iip1
49    pbarv(ijb:ije,l)=masseby(ijb:ije,l)*vcont(ijb:ije,l)
50
51  END DO
52!$OMP END DO NOWAIT
53
54  !--- North pole
55  IF(pole_nord) THEN
56    sairen =SUM(aire (1:iim))
57    saireun=SUM(aireu(1:iim))
58!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)   
59    DO l=1,llm
60      ctn=SUM(pbarv(1:iim,l))/sairen
61      pbaru(1,l)= pbarv(1,l)-ctn*aire(1)
62      DO i=2,iim
63        pbaru(i,l)=pbaru(i-1,l)+pbarv(i,l)-ctn*aire(i)
64      END DO
65      apbarun(:)=aireu(1:iim)*pbaru(1:iim,l)
66      ctn0 = -SUM(apbarun)/saireun
67      pbaru(1:iim,l)=2.*(pbaru(1:iim,l)+ctn0)
68      pbaru(iip1,l)=pbaru(1,l)
69    END DO
70!$OMP END DO NOWAIT             
71  END IF
72
73  !--- South pole
74  IF(pole_sud) THEN
75    saires =SUM(aire (ip1jm+1:ip1jmp1-1))
76    saireus=SUM(aireu(ip1jm+1:ip1jmp1-1))
77!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)   
78    DO l=1,llm
79      cts=SUM(pbarv(1+ip1jmi1:ip1jm-1,l))/saires
80      pbaru(1+ip1jm,l)=-pbarv(1+ip1jmi1,l)+cts*aire(1+ip1jm)
81      DO i=2,iim
82        pbaru(i+ip1jm,l)=pbaru(i-1+ip1jm,l)-pbarv(i+ip1jmi1,l)+cts*aire(i+ip1jm)
83      END DO
84      apbarus(:)=aireu(1+ip1jm:ip1jmp1-1)*pbaru(1+ip1jm:ip1jmp1-1,l)
85      cts0 = -SUM(apbarus)/saireus
86      pbaru(1+ip1jm:ip1jmp1-1,l)=2.*(pbaru(1+ip1jm:ip1jmp1-1,l)+cts0)
87      pbaru(ip1jmp1,l)=pbaru(1+ip1jm,l)
88    END DO
89!$OMP END DO NOWAIT         
90  END IF
91
92END SUBROUTINE flumass_loc
93
Note: See TracBrowser for help on using the repository browser.