#include "implicit_f.inc"
Go to the source code of this file.
|
| subroutine | vfluid (uvar, nel, mlw, phi1, phi2, phi3, nft) |
◆ vfluid()
| subroutine vfluid |
( |
| uvar, |
|
|
integer | nel, |
|
|
integer | mlw, |
|
|
| phi1, |
|
|
| phi2, |
|
|
| phi3, |
|
|
integer, intent(in) | nft ) |
Definition at line 29 of file vfluid.F.
32
33
34
35#include "implicit_f.inc"
36
37
38
39
40
41
42 INTEGER, INTENT(IN) :: NFT
43 INTEGER NEL,MLW
45 . phi1(*),phi2(*),uvar(*),phi3(*)
46
47
48
49 INTEGER I,IE
51 . vol0
52
53 DO i=1,nel
54 ie =nft+i
55
56 vol0 = uvar(i + 2*nel)
57
58
59 phi1(ie) = uvar(i)
60 phi2(ie) = uvar(i + nel)
61 phi3(ie) = uvar(i + 20*nel)
62
63 uvar(i) = phi1(ie)*vol0
64 uvar(i + nel) = phi2(ie)*vol0
65 ENDDO
66
67
68
69 RETURN