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

Last change on this file since 5300 was 5298, checked in by abarral, 2 days ago

Turn planete.h comsoil.h into module
Remove obsolete message related to /scratch/ common

  • 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: 2.5 KB
Line 
1SUBROUTINE diverg_gam_loc(klevel,cuvscvgam,cvuscugam,unsairegam, &
2        unsapolnga,unsapolsga,  x, y,  div )
3  !
4  ! P. Le Van
5  !
6  !  *********************************************************************
7  !  ... calcule la divergence a tous les niveaux d'1 vecteur de compos.
8  ! x et y...
9  !          x et y  etant des composantes covariantes   ...
10  !  *********************************************************************
11  USE comgeom_mod_h
12  USE parallel_lmdz
13  USE dimensions_mod, ONLY: iim, jjm, llm, ndm
14USE paramet_mod_h
15IMPLICIT NONE
16  !
17  !  x  et  y  sont des arguments  d'entree pour le s-prog
18  !    div      est  un argument  de sortie pour le s-prog
19  !
20  !
21
22
23
24  !
25  !    ..........          variables en arguments    ...................
26  !
27  INTEGER :: klevel
28  REAL :: x( ijb_u:ije_u,klevel ),y( ijb_v:ije_v,klevel )
29  REAL :: div( ijb_u:ije_u,klevel )
30  REAL :: cuvscvgam(ip1jm),cvuscugam(ip1jmp1),unsairegam(ip1jmp1)
31  REAL :: unsapolnga,unsapolsga
32  !
33  !    ...............     variables  locales   .........................
34
35  REAL :: aiy1( iip1 ) , aiy2( iip1 )
36  REAL :: sumypn,sumyps
37  INTEGER :: l,ij
38  !    ...................................................................
39  !
40  EXTERNAL  SSUM
41  REAL :: SSUM
42  INTEGER :: ijb,ije,jjb,jje
43  !
44  !
45  ijb=ij_begin
46  ije=ij_end
47  if (pole_nord) ijb=ij_begin+iip1
48  if(pole_sud)  ije=ij_end-iip1
49
50!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
51  DO l = 1,klevel
52  !
53    DO  ij = ijb, ije - 1
54     div( ij + 1, l )     = ( &
55           cvuscugam( ij+1 ) * x( ij+1,l ) - cvuscugam( ij ) * x( ij , l) + &
56           cuvscvgam(ij-iim) * y(ij-iim,l) - cuvscvgam(ij+1) * y(ij+1,l) )* &
57           unsairegam( ij+1 )
58    ENDDO
59  !
60  ! ....  correction pour  div( 1,j,l)  ......
61  ! ....   div(1,j,l)= div(iip1,j,l) ....
62  !
63  !DIR$ IVDEP
64    DO  ij = ijb,ije,iip1
65     div( ij,l ) = div( ij + iim,l )
66    ENDDO
67  !
68  ! ....  calcul  aux poles  .....
69  !
70   if (pole_nord) then
71      DO  ij  = 1,iim
72       aiy1(ij) =    cuvscvgam(    ij       ) * y(     ij     , l )
73      ENDDO
74      sumypn = SSUM ( iim,aiy1,1 ) * unsapolnga
75  !
76      DO  ij = 1,iip1
77       div(     ij    , l ) = - sumypn
78      ENDDO
79   endif
80
81    if (pole_sud) then
82      DO  ij  = 1,iim
83       aiy2(ij) =    cuvscvgam( ij+ ip1jmi1 ) * y( ij+ ip1jmi1, l )
84      ENDDO
85      sumyps = SSUM ( iim,aiy2,1 ) * unsapolsga
86  !
87      DO  ij = 1,iip1
88       div( ij + ip1jm, l ) =   sumyps
89      ENDDO
90   endif
91  END DO
92!$OMP END DO NOWAIT
93  !
94
95   RETURN
96END SUBROUTINE diverg_gam_loc
Note: See TracBrowser for help on using the repository browser.