/[lmdze]/trunk/libf/dyn3d/laplacien.f90
ViewVC logotype

Annotation of /trunk/libf/dyn3d/laplacien.f90

Parent Directory Parent Directory | Revision Log Revision Log


Revision 27 - (hide annotations)
Thu Mar 25 14:29:07 2010 UTC (14 years, 2 months ago) by guez
Original Path: trunk/libf/dyn3d/laplacien.f
File size: 1197 byte(s)
"dyn3d" and "filtrez" do not contain any included file so make rules
have been updated.

"comdissip.f90" was useless, removed it.

"dynredem0" wrote undefined value in "controle(31)", that was
overwritten by "dynredem1". Now "dynredem0" just writes 0 to
"controle(31)".

Removed arguments of "inidissip". "inidissip" now accesses the
variables by use association.

In program "etat0_lim", "itaufin" is not defined so "dynredem1" wrote
undefined value to "controle(31)". Added argument "itau" of
"dynredem1" to correct that.

"itaufin" does not need to be a module variable (of "temps"), made it
a local variable of "leapfrog".

Removed calls to "diagedyn" from "leapfrog".

1 guez 3 !
2     ! $Header: /home/cvsroot/LMDZ4/libf/dyn3d/laplacien.F,v 1.1.1.1 2004/05/19 12:53:06 lmdzadmin Exp $
3     !
4     SUBROUTINE laplacien ( klevel, teta, divgra )
5     c
6     c P. Le Van
7     c
8     c ************************************************************
9     c .... calcul de (div( grad )) de teta .....
10     c ************************************************************
11     c klevel et teta sont des arguments d'entree pour le s-prog
12     c divgra est un argument de sortie pour le s-prog
13     c
14     use dimens_m
15     use paramet_m
16     use comgeom
17 guez 27 use filtreg_m, only: filtreg
18 guez 3 IMPLICIT NONE
19     c
20    
21     c
22     c ......... variables en arguments ..............
23     c
24     INTEGER klevel
25     REAL teta( ip1jmp1,klevel ), divgra( ip1jmp1,klevel )
26     c
27     c ............ variables locales ..............
28     c
29     REAL ghy(ip1jm,llm), ghx(ip1jmp1,llm)
30     c .......................................................
31    
32    
33     c
34     CALL SCOPY ( ip1jmp1 * klevel, teta, 1, divgra, 1 )
35    
36     CALL filtreg( divgra, jjp1, klevel, 2, 1, .TRUE., 1 )
37     CALL grad ( klevel,divgra, ghx , ghy )
38     CALL divergf ( klevel, ghx , ghy , divgra )
39    
40     RETURN
41     END

  ViewVC Help
Powered by ViewVC 1.1.21