source: LMDZ6/trunk/libf/dyn3dmem/laplacien_loc.f90 @ 5301

Last change on this file since 5301 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: 1.5 KB
Line 
1SUBROUTINE laplacien_loc ( klevel, teta, divgra )
2  !
3  ! P. Le Van
4  !
5  !   ************************************************************
6  !    ....     calcul de  (div( grad ))   de   teta  .....
7  !   ************************************************************
8  ! klevel et teta  sont des arguments  d'entree pour le s-prog
9  !  divgra     est  un argument  de sortie pour le s-prog
10  !
11  USE comgeom_mod_h
12  USE parallel_lmdz
13  USE mod_filtreg_p
14  USE dimensions_mod, ONLY: iim, jjm, llm, ndm
15USE paramet_mod_h
16IMPLICIT NONE
17  !
18
19
20
21  !
22  !    .........      variables  en arguments   ..............
23  !
24  INTEGER :: klevel
25  REAL :: teta( ijb_u:ije_u,klevel ), divgra( ijb_u:ije_u,klevel )
26  INTEGER :: l
27  !
28  !    ............     variables  locales      ..............
29  !
30  REAL :: ghy(ijb_v:ije_v,llm), ghx(ijb_u:ije_u,llm)
31  !    .......................................................
32
33
34  INTEGER :: ijb,ije,jjb,jje
35  !
36  !  CALL SCOPY ( ip1jmp1 * klevel, teta, 1, divgra, 1 )
37
38  ijb=ij_begin-iip1
39  ije=ij_end+iip1
40  if (pole_nord) ijb=ij_begin
41  if (pole_sud ) ije=ij_end
42
43!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
44  DO l=1,klevel
45    divgra(ijb:ije,l)=teta(ijb:ije,l)
46  ENDDO
47!$OMP END DO NOWAIT
48
49  jjb=jj_begin-1
50  jje=jj_end+1
51  if (pole_nord) jjb=jj_begin
52  if (pole_sud ) jje=jj_end
53
54  CALL filtreg_p( divgra,jjb_u,jje_u,jjb,jje,jjp1, &
55        klevel,  2, 1, .TRUE., 1 )
56  CALL   grad_loc ( klevel,divgra,   ghx , ghy              )
57  CALL  divergf_loc ( klevel, ghx , ghy  , divgra           )
58
59  RETURN
60END SUBROUTINE laplacien_loc
Note: See TracBrowser for help on using the repository browser.