source: LMDZ5/trunk/libf/dyn3d/laplacien_gam.F @ 1907

Last change on this file since 1907 was 1907, checked in by lguez, 10 years ago

Added a copyright property to every file of the distribution, except
for the fcm files (which have their own copyright). Use svn propget on
a file to see the copyright. For instance:

$ svn propget copyright libf/phylmd/physiq.F90
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

Also added the files defining the CeCILL version 2 license, in French
and English, at the top of the LMDZ tree.

  • 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: 1.4 KB
Line 
1!
2! $Header$
3!
4      SUBROUTINE laplacien_gam ( klevel, cuvsga, cvusga, unsaigam ,
5     *                        unsapolnga, unsapolsga, teta, divgra )
6
7c  P. Le Van
8c
9c   ************************************************************
10c
11c      ....   calcul de  (div( grad ))   de   teta  .....
12c   ************************************************************
13c    klevel et teta  sont des arguments  d'entree pour le s-prog
14c      divgra     est  un argument  de sortie pour le s-prog
15c
16      IMPLICIT NONE
17c
18#include "dimensions.h"
19#include "paramet.h"
20#include "comgeom.h"
21
22c
23c    ............     variables  en arguments    ..........
24c
25      INTEGER klevel
26      REAL teta( ip1jmp1,klevel ), divgra( ip1jmp1,klevel )
27      REAL cuvsga(ip1jm) , cvusga( ip1jmp1 ),unsaigam(ip1jmp1),
28     *     unsapolnga, unsapolsga
29c
30c    ...........    variables  locales    .................
31c
32      REAL ghy(ip1jm,llm), ghx(ip1jmp1,llm)
33c    ......................................................
34
35c
36c
37c   ...  cvuscugam  = ( cvu/ cu ) ** (- gamdissip )
38c   ...  cuvscvgam  = ( cuv/ cv ) ** (- gamdissip )  calcules dans inigeom  ..
39c   ...  unsairegam =  1. /  aire ** (- gamdissip )
40c
41
42      CALL SCOPY ( ip1jmp1 * klevel, teta, 1, divgra, 1 )
43c
44      CALL   grad ( klevel, divgra, ghx, ghy )
45c
46      CALL  diverg_gam ( klevel, cuvsga, cvusga,  unsaigam  ,
47     *                 unsapolnga, unsapolsga, ghx , ghy , divgra )
48
49c
50
51
52      RETURN
53      END
Note: See TracBrowser for help on using the repository browser.