source: LMDZ6/trunk/libf/dyn3d_common/diverg_gam.f90 @ 5310

Last change on this file since 5310 was 5298, checked in by abarral, 9 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
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 KB
Line 
1!
2! $Header$
3!
4SUBROUTINE diverg_gam(klevel,cuvscvgam,cvuscugam,unsairegam , &
5        unsapolnga,unsapolsga,  x, y,  div )
6  !
7  ! P. Le Van
8  !
9  !  *********************************************************************
10  !  ... calcule la divergence a tous les niveaux d'1 vecteur de compos.
11  ! x et y...
12  !          x et y  etant des composantes covariantes   ...
13  !  *********************************************************************
14  USE comgeom_mod_h
15  USE dimensions_mod, ONLY: iim, jjm, llm, ndm
16USE paramet_mod_h
17IMPLICIT NONE
18  !
19  !  x  et  y  sont des arguments  d'entree pour le s-prog
20  !    div      est  un argument  de sortie pour le s-prog
21  !
22  !
23
24
25
26  !
27  !    ..........          variables en arguments    ...................
28  !
29  INTEGER :: klevel
30  REAL :: x( ip1jmp1,klevel ),y( ip1jm,klevel ),div( ip1jmp1,klevel )
31  REAL :: cuvscvgam(ip1jm),cvuscugam(ip1jmp1),unsairegam(ip1jmp1)
32  REAL :: unsapolnga,unsapolsga
33  !
34  !    ...............     variables  locales   .........................
35
36  REAL :: aiy1( iip1 ) , aiy2( iip1 )
37  REAL :: sumypn,sumyps
38  INTEGER :: l,ij
39  !    ...................................................................
40  !
41  REAL :: SSUM
42  !
43  !
44  DO l = 1,klevel
45  !
46    DO  ij = iip2, ip1jm - 1
47     div( ij + 1, l )     = ( &
48           cvuscugam( ij+1 ) * x( ij+1,l ) - cvuscugam( ij ) * x( ij , l) + &
49           cuvscvgam(ij-iim) * y(ij-iim,l) - cuvscvgam(ij+1) * y(ij+1,l) )* &
50           unsairegam( ij+1 )
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) =    cuvscvgam(    ij       ) * y(     ij     , l )
65     aiy2(ij) =    cuvscvgam( ij+ ip1jmi1 ) * y( ij+ ip1jmi1, l )
66    ENDDO
67    sumypn = SSUM ( iim,aiy1,1 ) * unsapolnga
68    sumyps = SSUM ( iim,aiy2,1 ) * unsapolsga
69  !
70    DO  ij = 1,iip1
71     div(     ij    , l ) = - sumypn
72     div( ij + ip1jm, l ) =   sumyps
73    ENDDO
74  END DO
75  !
76
77   RETURN
78END SUBROUTINE diverg_gam
Note: See TracBrowser for help on using the repository browser.