repo.or.cz
/
foam-extend-3.2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Removed unnecessary return statement
[foam-extend-3.2.git]
/
applications
/
solvers
/
multiphase
/
multiphaseInterFoam
/
UEqn.H
blob
43cc2cb183afdbbd179abf7a35a51d579910a0fe
1
surfaceScalarField muf = mixture.muf();
2
3
fvVectorMatrix UEqn
4
(
5
fvm::ddt(rho, U)
6
+ fvm::div(mixture.rhoPhi(), U)
7
- fvm::laplacian(muf, U)
8
- (fvc::grad(U) & fvc::grad(muf))
9
//- fvc::div(muf*(mesh.Sf() & fvc::interpolate(fvc::grad(U)().T())))
10
);