1 | SUBROUTINE convflu( xflu,yflu,nbniv,convfl ) |
---|
2 | c |
---|
3 | c P. Le Van |
---|
4 | c |
---|
5 | c |
---|
6 | c ******************************************************************* |
---|
7 | c ... calcule la (convergence horiz. * aire locale)du flux ayant pour |
---|
8 | c composantes xflu et yflu ,variables extensives . ...... |
---|
9 | c ******************************************************************* |
---|
10 | c xflu , yflu et nbniv sont des arguments d'entree pour le s-pg .. |
---|
11 | c convfl est un argument de sortie pour le s-pg . |
---|
12 | c |
---|
13 | c njxflu est le nombre de lignes de latitude de xflu, |
---|
14 | c ( = jjm ou jjp1 ) |
---|
15 | c nbniv est le nombre de niveaux vert. de xflu et de yflu . |
---|
16 | c |
---|
17 | IMPLICIT NONE |
---|
18 | c |
---|
19 | #include "dimensions.h" |
---|
20 | #include "paramet.h" |
---|
21 | REAL xflu,yflu,convfl,convpn,convps |
---|
22 | INTEGER l,ij,nbniv |
---|
23 | DIMENSION xflu( ip1jmp1,nbniv ),yflu( ip1jm,nbniv ) , |
---|
24 | * convfl( ip1jmp1,nbniv ) |
---|
25 | c |
---|
26 | EXTERNAL SSUM |
---|
27 | REAL SSUM |
---|
28 | c |
---|
29 | c |
---|
30 | #include "comgeom.h" |
---|
31 | c |
---|
32 | DO 5 l = 1,nbniv |
---|
33 | c |
---|
34 | DO 2 ij = iip2, ip1jm - 1 |
---|
35 | convfl( ij + 1,l ) = xflu( ij,l ) - xflu( ij + 1,l ) + |
---|
36 | * yflu(ij +1,l ) - yflu( ij -iim,l ) |
---|
37 | 2 CONTINUE |
---|
38 | c |
---|
39 | c |
---|
40 | |
---|
41 | c .... correction pour convfl( 1,j,l) ...... |
---|
42 | c .... convfl(1,j,l)= convfl(iip1,j,l) ... |
---|
43 | c |
---|
44 | CDIR$ IVDEP |
---|
45 | DO 3 ij = iip2,ip1jm,iip1 |
---|
46 | convfl( ij,l ) = convfl( ij + iim,l ) |
---|
47 | 3 CONTINUE |
---|
48 | c |
---|
49 | c ...... calcul aux poles ....... |
---|
50 | c |
---|
51 | convpn = SSUM( iim, yflu( 1 ,l ), 1 ) |
---|
52 | convps = - SSUM( iim, yflu( ip1jm-iim,l ), 1 ) |
---|
53 | DO 4 ij = 1,iip1 |
---|
54 | convfl( ij ,l ) = convpn * aire( ij ) / apoln |
---|
55 | convfl( ij+ ip1jm,l ) = convps * aire( ij+ ip1jm) / apols |
---|
56 | 4 CONTINUE |
---|
57 | c |
---|
58 | 5 CONTINUE |
---|
59 | RETURN |
---|
60 | END |
---|