source: LMDZ6/trunk/libf/dyn3d_common/diverg.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
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 KB
RevLine 
[524]1!
2! $Header$
3!
[5246]4SUBROUTINE diverg(klevel,x,y,div)
5  !
6  ! P. Le Van
7  !
8  !  *********************************************************************
9  !  ... calcule la divergence a tous les niveaux d'1 vecteur de compos.
10  ! x et y...
11  !          x et y  etant des composantes covariantes   ...
12  !  *********************************************************************
[5281]13  USE comgeom_mod_h
[5271]14  USE dimensions_mod, ONLY: iim, jjm, llm, ndm
[5285]15USE paramet_mod_h
[5271]16IMPLICIT NONE
[5246]17  !
18  !  x  et  y  sont des arguments  d'entree pour le s-prog
19  !    div      est  un argument  de sortie pour le s-prog
20  !
21  !
22  !   ---------------------------------------------------------------------
23  !
24  !    ATTENTION : pendant ce s-pg , ne pas toucher au COMMON/scratch/  .
25  !
26  !   ---------------------------------------------------------------------
[5271]27
[5272]28
[5246]29  !
30  !    ..........          variables en arguments    ...................
31  !
32  INTEGER :: klevel
33  REAL :: x( ip1jmp1,klevel ),y( ip1jm,klevel ),div( ip1jmp1,klevel )
34  INTEGER :: l,ij
35  !
36  !    ...............     variables  locales   .........................
[524]37
[5246]38  REAL :: aiy1( iip1 ) , aiy2( iip1 )
39  REAL :: sumypn,sumyps
40  !    ...................................................................
41  !
42  REAL :: SSUM
43  !
44  !
45  DO l = 1,klevel
46  !
47    DO  ij = iip2, ip1jm - 1
48     div( ij + 1, l )     = &
49           cvusurcu( ij+1 ) * x( ij+1,l ) - cvusurcu( ij ) * x( ij , l) + &
50           cuvsurcv(ij-iim) * y(ij-iim,l) - cuvsurcv(ij+1) * y(ij+1,l)
51    ENDDO
52  !
53  ! ....  correction pour  div( 1,j,l)  ......
54  ! ....   div(1,j,l)= div(iip1,j,l) ....
55  !
56  !DIR$ IVDEP
57    DO  ij = iip2,ip1jm,iip1
58     div( ij,l ) = div( ij + iim,l )
59    ENDDO
60  !
61  ! ....  calcul  aux poles  .....
62  !
63    DO  ij  = 1,iim
64     aiy1(ij) =    cuvsurcv(    ij       ) * y(     ij     , l )
65     aiy2(ij) =    cuvsurcv( ij+ ip1jmi1 ) * y( ij+ ip1jmi1, l )
66    ENDDO
67    sumypn = SSUM ( iim,aiy1,1 ) / apoln
68    sumyps = SSUM ( iim,aiy2,1 ) / apols
69  !
70    DO  ij = 1,iip1
71     div(     ij    , l ) = - sumypn
72     div( ij + ip1jm, l ) =   sumyps
73    ENDDO
74  END DO
75  !
[524]76
[5246]77  !cc        CALL filtreg( div, jjp1, klevel, 2, 2, .TRUE., 1 )
78
79  !
80    DO l = 1, klevel
81       DO ij = iip2,ip1jm
82        div(ij,l) = div(ij,l) * unsaire(ij)
83      ENDDO
84    ENDDO
85  !
86   RETURN
87END SUBROUTINE diverg
Note: See TracBrowser for help on using the repository browser.