source: LMDZ6/branches/Amaury_dev/libf/dyn3dmem/divergf_loc.f90 @ 5139

Last change on this file since 5139 was 5136, checked in by abarral, 8 weeks ago

Put comgeom.h, comgeom2.h into 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 parallel_lmdz
11  USE lmdz_filtreg_p
12  USE lmdz_ssum_scopy, ONLY: ssum
13  USE lmdz_comgeom
14
15  IMPLICIT 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  INCLUDE "dimensions.h"
27  INCLUDE "paramet.h"
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  INTEGER :: ijb,ije,jjb,jje
42  !
43  !
44  ijb=ij_begin
45  ije=ij_end
46  IF (pole_nord) ijb=ij_begin+iip1
47  IF(pole_sud)  ije=ij_end-iip1
48
49!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
50  DO l = 1,klevel
51  !
52    DO  ij = ijb, ije - 1
53     div( ij + 1, l )     = &
54           cvusurcu( ij+1 ) * x( ij+1,l ) - cvusurcu( ij ) * x( ij , l) + &
55           cuvsurcv(ij-iim) * y(ij-iim,l) - cuvsurcv(ij+1) * y(ij+1,l)
56    ENDDO
57
58  !
59  ! ....  correction pour  div( 1,j,l)  ......
60  ! ....   div(1,j,l)= div(iip1,j,l) ....
61  !
62  !DIR$ IVDEP
63    DO  ij = ijb,ije,iip1
64     div( ij,l ) = div( ij + iim,l )
65    ENDDO
66  !
67  ! ....  calcul  aux poles  .....
68  !
69    IF (pole_nord) THEN
70      DO  ij  = 1,iim
71       aiy1(ij) =    cuvsurcv(    ij       ) * y(     ij     , l )
72      ENDDO
73      sumypn = SSUM ( iim,aiy1,1 ) / apoln
74
75  !
76      DO  ij = 1,iip1
77       div(     ij    , l ) = - sumypn
78      ENDDO
79
80    endif
81
82    IF (pole_sud) THEN
83      DO  ij  = 1,iim
84       aiy2(ij) =    cuvsurcv( ij+ ip1jmi1 ) * y( ij+ ip1jmi1, l )
85      ENDDO
86      sumyps = SSUM ( iim,aiy2,1 ) / apols
87  !
88      DO  ij = 1,iip1
89       div( ij + ip1jm, l ) =   sumyps
90      ENDDO
91
92    endif
93
94  END DO
95!$OMP END DO NOWAIT
96
97  !
98    jjb=jj_begin
99    jje=jj_end
100    IF (pole_sud) jje=jj_end-1
101
102    CALL filtreg_p( div,jjb_u,jje_u,jjb,jje, jjp1, &
103          klevel, 2, 2, .TRUE., 1 )
104
105  !
106!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
107    DO l = 1, klevel
108       DO ij = ijb,ije
109        div(ij,l) = div(ij,l) * unsaire(ij)
110      ENDDO
111    ENDDO
112!$OMP END DO NOWAIT
113  !
114
115END SUBROUTINE divergf_loc
Note: See TracBrowser for help on using the repository browser.