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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3 - (show annotations)
Wed Feb 27 13:16:39 2008 UTC (16 years, 2 months ago) by guez
File size: 1946 byte(s)
Initial import
1 !
2 ! $Header: /home/cvsroot/LMDZ4/libf/dyn3d/tourpot.F,v 1.1.1.1 2004/05/19 12:53:06 lmdzadmin Exp $
3 !
4 SUBROUTINE tourpot ( vcov, ucov, massebxy, vorpot )
5
6 c=======================================================================
7 c
8 c Auteur: P. Le Van
9 c -------
10 c
11 c Objet:
12 c ------
13 c
14 c *******************************************************************
15 c ......... calcul du tourbillon potentiel .........
16 c *******************************************************************
17 c
18 c vcov,ucov,fext et pbarxyfl sont des argum. d'entree pour le s-pg .
19 c vorpot est un argum.de sortie pour le s-pg .
20 c
21 c=======================================================================
22
23 use dimens_m
24 use paramet_m
25 use logic
26 use comgeom
27 IMPLICIT NONE
28
29 REAL rot( ip1jm,llm )
30 REAL, intent(in):: vcov( ip1jm,llm ),ucov( ip1jmp1,llm )
31 REAL massebxy( ip1jm,llm ),vorpot( ip1jm,llm )
32
33 INTEGER l, ij
34
35
36
37
38 c ... vorpot = ( Filtre( d(vcov)/dx - d(ucov)/dy ) + fext ) /psbarxy ..
39
40
41
42 c ........ Calcul du rotationnel du vent V puis filtrage ........
43
44 DO 5 l = 1,llm
45
46 DO 2 ij = 1, ip1jm - 1
47 rot( ij,l ) = vcov(ij+1,l)-vcov(ij,l)+ucov(ij+iip1,l)-ucov(ij,l)
48 2 CONTINUE
49
50 c .... correction pour rot( iip1,j,l ) .....
51 c .... rot(iip1,j,l) = rot(1,j,l) .....
52
53 CDIR$ IVDEP
54
55 DO 3 ij = iip1, ip1jm, iip1
56 rot( ij,l ) = rot( ij -iim, l )
57 3 CONTINUE
58
59 5 CONTINUE
60
61
62 CALL filtreg( rot, jjm, llm, 2, 1, .FALSE., 1 )
63
64
65 DO 10 l = 1, llm
66
67 DO 6 ij = 1, ip1jm - 1
68 vorpot( ij,l ) = ( rot(ij,l) + fext(ij) ) / massebxy(ij,l)
69 6 CONTINUE
70
71 c ..... correction pour vorpot( iip1,j,l) .....
72 c .... vorpot(iip1,j,l)= vorpot(1,j,l) ....
73 CDIR$ IVDEP
74 DO 8 ij = iip1, ip1jm, iip1
75 vorpot( ij,l ) = vorpot( ij -iim,l )
76 8 CONTINUE
77
78 10 CONTINUE
79
80 RETURN
81 END

  ViewVC Help
Powered by ViewVC 1.1.21