/[lmdze]/trunk/dyn3d/laplacien.f
ViewVC logotype

Annotation of /trunk/dyn3d/laplacien.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 55 - (hide annotations)
Mon Dec 12 13:25:01 2011 UTC (12 years, 5 months ago) by guez
Original Path: trunk/libf/dyn3d/laplacien.f
File size: 1211 byte(s)
-- In procedure "bilan_dyn", replaced average of "zvq" by integral of
"zvq", following a comment of Francis Codron :

Le calcul actuel donne des unités peu pratiques : transports de
chaleur en K m / s par exemple. C'est bien pour les sorties à 2
dimensions, latitude et pression, car alors le transport ne dépend pas
de l'espacement des niveaux, mieux pour comparer ou tracer en latitude
et pression. Par contre, quand on somme sur la verticale, on
préfèrerait avoir des transports d'énergie en watts, ou au moins an K
kg / s (à multiplier par "Cp" ou "L"). On doit pouvoir recalculer le
transport intégré à partir des fichiers de sortie, mais c'est embêtant
(calcul de "cv").

-- Gathered files in directory Dissipation.

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 guez 55 INTEGER, intent(in):: klevel
25 guez 3 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