source: LMDZ6/trunk/libf/dyn3d_common/diverg.f90 @ 5248

Last change on this file since 5248 was 5246, checked in by abarral, 23 hours ago

Convert fixed-form to free-form sources .F -> .{f,F}90
(WIP: some .F remain, will be handled in subsequent commits)

  • 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.2 KB
Line 
1!
2! $Header$
3!
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  !  *********************************************************************
13  IMPLICIT NONE
14  !
15  !  x  et  y  sont des arguments  d'entree pour le s-prog
16  !    div      est  un argument  de sortie pour le s-prog
17  !
18  !
19  !   ---------------------------------------------------------------------
20  !
21  !    ATTENTION : pendant ce s-pg , ne pas toucher au COMMON/scratch/  .
22  !
23  !   ---------------------------------------------------------------------
24  INCLUDE "dimensions.h"
25  INCLUDE "paramet.h"
26  INCLUDE "comgeom.h"
27  !
28  !    ..........          variables en arguments    ...................
29  !
30  INTEGER :: klevel
31  REAL :: x( ip1jmp1,klevel ),y( ip1jm,klevel ),div( ip1jmp1,klevel )
32  INTEGER :: l,ij
33  !
34  !    ...............     variables  locales   .........................
35
36  REAL :: aiy1( iip1 ) , aiy2( iip1 )
37  REAL :: sumypn,sumyps
38  !    ...................................................................
39  !
40  REAL :: SSUM
41  !
42  !
43  DO l = 1,klevel
44  !
45    DO  ij = iip2, ip1jm - 1
46     div( ij + 1, l )     = &
47           cvusurcu( ij+1 ) * x( ij+1,l ) - cvusurcu( ij ) * x( ij , l) + &
48           cuvsurcv(ij-iim) * y(ij-iim,l) - cuvsurcv(ij+1) * y(ij+1,l)
49    ENDDO
50  !
51  ! ....  correction pour  div( 1,j,l)  ......
52  ! ....   div(1,j,l)= div(iip1,j,l) ....
53  !
54  !DIR$ IVDEP
55    DO  ij = iip2,ip1jm,iip1
56     div( ij,l ) = div( ij + iim,l )
57    ENDDO
58  !
59  ! ....  calcul  aux poles  .....
60  !
61    DO  ij  = 1,iim
62     aiy1(ij) =    cuvsurcv(    ij       ) * y(     ij     , l )
63     aiy2(ij) =    cuvsurcv( ij+ ip1jmi1 ) * y( ij+ ip1jmi1, l )
64    ENDDO
65    sumypn = SSUM ( iim,aiy1,1 ) / apoln
66    sumyps = SSUM ( iim,aiy2,1 ) / apols
67  !
68    DO  ij = 1,iip1
69     div(     ij    , l ) = - sumypn
70     div( ij + ip1jm, l ) =   sumyps
71    ENDDO
72  END DO
73  !
74
75  !cc        CALL filtreg( div, jjp1, klevel, 2, 2, .TRUE., 1 )
76
77  !
78    DO l = 1, klevel
79       DO ij = iip2,ip1jm
80        div(ij,l) = div(ij,l) * unsaire(ij)
81      ENDDO
82    ENDDO
83  !
84   RETURN
85END SUBROUTINE diverg
Note: See TracBrowser for help on using the repository browser.