source: LMDZ6/trunk/libf/dyn3dmem/divergf_loc.f90 @ 5285

Last change on this file since 5285 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: 2.8 KB
Line 
1SUBROUTINE divergf_loc(klevel,x,y,div)
2  !
3  ! P. Le Van
4  !
5  !  *********************************************************************
6  !  ... calcule la divergence a tous les niveaux d'1 vecteur de compos.
7  ! x et y...
8  !          x et y  etant des composantes covariantes   ...
9  !  *********************************************************************
10  USE comgeom_mod_h
11  USE parallel_lmdz
12  USE mod_filtreg_p
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  !    ATTENTION : pendant ce s-pg , ne pas toucher au COMMON/scratch/  .
24  !
25  !   ---------------------------------------------------------------------
26
27
28  !
29  !    ..........          variables en arguments    ...................
30  !
31  INTEGER :: klevel
32  REAL :: x( ijb_u:ije_u,klevel ),y( ijb_v:ije_v,klevel )
33  REAL :: div( ijb_u:ije_u,klevel )
34  INTEGER :: l,ij
35  !
36  !    ...............     variables  locales   .........................
37
38  REAL :: aiy1( iip1 ) , aiy2( iip1 )
39  REAL :: sumypn,sumyps
40  !    ...................................................................
41  !
42  EXTERNAL  SSUM
43  REAL :: SSUM
44  INTEGER :: ijb,ije,jjb,jje
45  !
46  !
47  ijb=ij_begin
48  ije=ij_end
49  if (pole_nord) ijb=ij_begin+iip1
50  if(pole_sud)  ije=ij_end-iip1
51
52!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
53  DO l = 1,klevel
54  !
55    DO  ij = ijb, ije - 1
56     div( ij + 1, l )     = &
57           cvusurcu( ij+1 ) * x( ij+1,l ) - cvusurcu( ij ) * x( ij , l) + &
58           cuvsurcv(ij-iim) * y(ij-iim,l) - cuvsurcv(ij+1) * y(ij+1,l)
59    ENDDO
60
61  !
62  ! ....  correction pour  div( 1,j,l)  ......
63  ! ....   div(1,j,l)= div(iip1,j,l) ....
64  !
65  !DIR$ IVDEP
66    DO  ij = ijb,ije,iip1
67     div( ij,l ) = div( ij + iim,l )
68    ENDDO
69  !
70  ! ....  calcul  aux poles  .....
71  !
72    if (pole_nord) then
73
74      DO  ij  = 1,iim
75       aiy1(ij) =    cuvsurcv(    ij       ) * y(     ij     , l )
76      ENDDO
77      sumypn = SSUM ( iim,aiy1,1 ) / apoln
78
79  !
80      DO  ij = 1,iip1
81       div(     ij    , l ) = - sumypn
82      ENDDO
83
84    endif
85
86    if (pole_sud) then
87
88      DO  ij  = 1,iim
89       aiy2(ij) =    cuvsurcv( ij+ ip1jmi1 ) * y( ij+ ip1jmi1, l )
90      ENDDO
91      sumyps = SSUM ( iim,aiy2,1 ) / apols
92  !
93      DO  ij = 1,iip1
94       div( ij + ip1jm, l ) =   sumyps
95      ENDDO
96
97    endif
98
99  END DO
100!$OMP END DO NOWAIT
101
102  !
103    jjb=jj_begin
104    jje=jj_end
105    if (pole_sud) jje=jj_end-1
106
107    CALL filtreg_p( div,jjb_u,jje_u,jjb,jje, jjp1, &
108          klevel, 2, 2, .TRUE., 1 )
109
110  !
111!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
112    DO l = 1, klevel
113       DO ij = ijb,ije
114        div(ij,l) = div(ij,l) * unsaire(ij)
115      ENDDO
116    ENDDO
117!$OMP END DO NOWAIT
118  !
119   RETURN
120END SUBROUTINE divergf_loc
Note: See TracBrowser for help on using the repository browser.