/[lmdze]/trunk/libf/dyn3d/laplacien_rot.f
ViewVC logotype

Contents of /trunk/libf/dyn3d/laplacien_rot.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 27 - (show annotations)
Thu Mar 25 14:29:07 2010 UTC (14 years, 2 months ago) by guez
File size: 1189 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 !
2 ! $Header: /home/cvsroot/LMDZ4/libf/dyn3d/laplacien_rot.F,v 1.1.1.1 2004/05/19 12:53:07 lmdzadmin Exp $
3 !
4 SUBROUTINE laplacien_rot ( klevel, rotin, rotout,ghx,ghy )
5 c
6 c P. Le Van
7 c
8 c ************************************************************
9 c ... calcul de ( rotat x nxgrad ) du rotationnel rotin .
10 c ************************************************************
11 c
12 c klevel et rotin sont des arguments d'entree pour le s-prog
13 c rotout est un argument de sortie pour le s-prog
14 c
15 use dimens_m
16 use paramet_m
17 use comgeom
18 use filtreg_m, only: filtreg
19 IMPLICIT NONE
20 c
21
22 c
23 c .......... variables en arguments .............
24 c
25 INTEGER klevel
26 REAL rotin( ip1jm,klevel ), rotout( ip1jm,klevel )
27 c
28 c .......... variables locales ................
29 c
30 REAL ghy(ip1jm,klevel), ghx(ip1jmp1,klevel)
31 c ........................................................
32 c
33 c
34 CALL filtreg ( rotin , jjm, klevel, 2, 1, .FALSE., 1 )
35
36 CALL nxgrad ( klevel, rotin, ghx , ghy )
37 CALL rotatf ( klevel, ghx , ghy , rotout )
38 c
39 RETURN
40 END

  ViewVC Help
Powered by ViewVC 1.1.21