source: LMDZ6/branches/Amaury_dev/libf/dyn3dmem/massbarxy_loc.F90 @ 5081

Last change on this file since 5081 was 5081, checked in by abarral, 2 months ago

Commit linked to correcting relevant warnings during gfortran compilation

[minor]
Correct remnants of fixed-form "+" in massbarxy.F90
Correct COMMON alignment in clesphys.h, flux_arp.h, cv*param.h, YOECUMF.h, alpale.h
Correct obsolete logical operators
Restrict use of iso_fortran_env in nf95_abort.f90
Remove redundant save in module declarations
Remove <continue> without labels
Fix nonstandard kind selectors

  • 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: 1.4 KB
Line 
1SUBROUTINE massbarxy_loc(masse,massebxy)
2!
3!-------------------------------------------------------------------------------
4! Authors: P. Le Van , Fr. Hourdin.
5!-------------------------------------------------------------------------------
6! Purpose: Compute air mass mean along X and Y in each cell.
7! See iniconst for more details.
8  USE parallel_lmdz
9  IMPLICIT NONE
10  include "dimensions.h"
11  include "paramet.h"
12  include "comgeom.h"
13!===============================================================================
14! Arguments:
15  REAL, INTENT(IN)  :: masse   (ijb_u:ije_u,llm)
16  REAL, INTENT(OUT) :: massebxy(ijb_v:ije_v,llm)
17!===============================================================================
18! Local variables:
19  INTEGER :: ij, l, ijb, ije
20!===============================================================================
21  ijb=ij_begin-iip1
22  ije=ij_end
23  IF(pole_nord) ijb=ijb+iip1
24  IF(pole_sud)  ije=ije-iip1
25!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)   
26  DO l=1,llm
27    DO ij=ijb,ije-1
28      massebxy(ij,l)=masse(ij     ,l)*alpha2(ij     ) + &
29                     masse(ij+1   ,l)*alpha3(ij+1   ) + &
30                     masse(ij+iip1,l)*alpha1(ij+iip1) + &
31                     masse(ij+iip2,l)*alpha4(ij+iip2)
32    END DO
33    DO ij=ijb+iip1-1,ije+iip1-1,iip1; massebxy(ij,l)=massebxy(ij-iim,l); END DO
34  END DO
35!$OMP END DO NOWAIT
36
37END SUBROUTINE massbarxy_loc
38
Note: See TracBrowser for help on using the repository browser.