1 | SUBROUTINE tourpot ( vcov, ucov, massebxy, vorpot ) |
---|
2 | IMPLICIT NONE |
---|
3 | |
---|
4 | c======================================================================= |
---|
5 | c |
---|
6 | c Auteur: P. Le Van |
---|
7 | c ------- |
---|
8 | c |
---|
9 | c Objet: |
---|
10 | c ------ |
---|
11 | c |
---|
12 | c ******************************************************************* |
---|
13 | c ......... calcul du tourbillon potentiel ......... |
---|
14 | c ******************************************************************* |
---|
15 | c |
---|
16 | c vcov,ucov,fext et pbarxyfl sont des argum. d'entree pour le s-pg . |
---|
17 | c vorpot est un argum.de sortie pour le s-pg . |
---|
18 | c |
---|
19 | c======================================================================= |
---|
20 | |
---|
21 | #include "dimensions.h" |
---|
22 | #include "paramet.h" |
---|
23 | #include "comgeom.h" |
---|
24 | #include "logic.h" |
---|
25 | |
---|
26 | REAL rot( ip1jm,llm ) |
---|
27 | REAL vcov( ip1jm,llm ),ucov( ip1jmp1,llm ) |
---|
28 | REAL massebxy( ip1jm,llm ),vorpot( ip1jm,llm ) |
---|
29 | |
---|
30 | INTEGER l, ij |
---|
31 | |
---|
32 | EXTERNAL filtreg |
---|
33 | |
---|
34 | |
---|
35 | |
---|
36 | c ... vorpot = ( Filtre( d(vcov)/dx - d(ucov)/dy ) + fext ) /psbarxy .. |
---|
37 | |
---|
38 | |
---|
39 | |
---|
40 | c ........ Calcul du rotationnel du vent V puis filtrage ........ |
---|
41 | |
---|
42 | DO 5 l = 1,llm |
---|
43 | |
---|
44 | DO 2 ij = 1, ip1jm - 1 |
---|
45 | rot( ij,l ) = vcov(ij+1,l)-vcov(ij,l)+ucov(ij+iip1,l)-ucov(ij,l) |
---|
46 | 2 CONTINUE |
---|
47 | |
---|
48 | c .... correction pour rot( iip1,j,l ) ..... |
---|
49 | c .... rot(iip1,j,l) = rot(1,j,l) ..... |
---|
50 | |
---|
51 | CDIR$ IVDEP |
---|
52 | |
---|
53 | DO 3 ij = iip1, ip1jm, iip1 |
---|
54 | rot( ij,l ) = rot( ij -iim, l ) |
---|
55 | 3 CONTINUE |
---|
56 | |
---|
57 | 5 CONTINUE |
---|
58 | |
---|
59 | |
---|
60 | CALL filtreg( rot, jjm, llm, 2, 1, .FALSE., 1 ) |
---|
61 | |
---|
62 | |
---|
63 | DO 10 l = 1, llm |
---|
64 | |
---|
65 | DO 6 ij = 1, ip1jm - 1 |
---|
66 | vorpot( ij,l ) = ( rot(ij,l) + fext(ij) ) / massebxy(ij,l) |
---|
67 | 6 CONTINUE |
---|
68 | |
---|
69 | c ..... correction pour vorpot( iip1,j,l) ..... |
---|
70 | c .... vorpot(iip1,j,l)= vorpot(1,j,l) .... |
---|
71 | CDIR$ IVDEP |
---|
72 | DO 8 ij = iip1, ip1jm, iip1 |
---|
73 | vorpot( ij,l ) = vorpot( ij -iim,l ) |
---|
74 | 8 CONTINUE |
---|
75 | |
---|
76 | 10 CONTINUE |
---|
77 | |
---|
78 | RETURN |
---|
79 | END |
---|