1 | SUBROUTINE flumass3d(ucont,vcont,pext,pbaru,pbarv,w,dp) |
---|
2 | c%W% %G% |
---|
3 | c======================================================================= |
---|
4 | c |
---|
5 | c Author: Frederic Hourdin original: 17/02/93 |
---|
6 | c ------- |
---|
7 | c |
---|
8 | c Subject: |
---|
9 | c ------ |
---|
10 | c calcul du flux de masse dans les trois directions |
---|
11 | c |
---|
12 | c Method: |
---|
13 | c -------- |
---|
14 | c |
---|
15 | c Interface: |
---|
16 | c ---------- |
---|
17 | c |
---|
18 | c Input: |
---|
19 | c ------ |
---|
20 | c |
---|
21 | c Output: |
---|
22 | c ------- |
---|
23 | c |
---|
24 | c======================================================================= |
---|
25 | IMPLICIT NONE |
---|
26 | c----------------------------------------------------------------------- |
---|
27 | c Declararations: |
---|
28 | c --------------- |
---|
29 | |
---|
30 | #include "dimensions.h" |
---|
31 | #include "paramet.h" |
---|
32 | #include "comconst.h" |
---|
33 | #include "comvert.h" |
---|
34 | #include "comgeom.h" |
---|
35 | |
---|
36 | c Arguments: |
---|
37 | c ---------- |
---|
38 | |
---|
39 | |
---|
40 | REAL pext(ip1jmp1) |
---|
41 | REAL vcont(ip1jm,llm),ucont(ip1jmp1,llm) |
---|
42 | REAL pbaru(ip1jmp1,llm),pbarv(ip1jm,llm) |
---|
43 | REAL dp(ip1jmp1) |
---|
44 | REAL w(ip1jmp1,llm) |
---|
45 | |
---|
46 | c Local: |
---|
47 | c ------ |
---|
48 | |
---|
49 | REAL pbarx(ip1jmp1),pbary(ip1jm),pbarxy(ip1jm) |
---|
50 | REAL convm(ip1jmp1,llm) |
---|
51 | |
---|
52 | c----------------------------------------------------------------------- |
---|
53 | |
---|
54 | CALL pbar(pext,pbarx,pbary,pbarxy) |
---|
55 | CALL flumass(pbarx,pbary,vcont,ucont,pbaru,pbarv) |
---|
56 | CALL convmas(pbaru,pbarv,convm) |
---|
57 | CALL SCOPY(ip1jmp1,convm,1,dp,1) |
---|
58 | CALL vitvert(convm,w) |
---|
59 | |
---|
60 | RETURN |
---|
61 | END |
---|