#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 . dt2t
47 . phi1(*),phi2(*),uvar(*),phi3(*)
48
49
50
51 INTEGER I,IE
53 . vol0
54
55 DO i=1,nel
56 ie =nft+i
57
58 vol0 = uvar(i + 2*nel)
59
60
61 phi1(ie) = uvar(i)
62 phi2(ie) = uvar(i + nel)
63 phi3(ie) = uvar(i + 20*nel)
64
65 uvar(i) = phi1(ie)*vol0
66 uvar(i + nel) = phi2(ie)*vol0
67 ENDDO
68
69
70
71 RETURN