This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/applications/solvers/multiphase/twoLiquidMixingFoam/UEqn.H

46 lines
984 B
C
Raw Normal View History

2010-09-22 18:13:13 +00:00
surfaceScalarField muEff
(
"muEff",
twoPhaseProperties.muf()
+ fvc::interpolate(rho*turbulence->nut())
);
fvVectorMatrix UEqn
(
fvm::ddt(rho, U)
+ fvm::div(rhoPhi, U)
2010-09-22 18:13:13 +00:00
- fvm::laplacian(muEff, U)
- (fvc::grad(U) & fvc::grad(muEff))
//- fvc::div(muEff*(fvc::interpolate(dev(fvc::grad(U))) & mesh.Sf()))
);
2010-09-22 18:13:13 +00:00
if (oCorr == nOuterCorr-1)
{
if (mesh.solutionDict().relax("UFinal"))
{
UEqn.relax(mesh.solutionDict().relaxationFactor("UFinal"));
}
else
{
UEqn.relax(1);
}
2010-09-22 18:13:13 +00:00
}
else
{
UEqn.relax();
}
if (momentumPredictor)
{
solve
(
UEqn
==
2010-09-22 18:13:13 +00:00
fvc::reconstruct
(
2010-09-22 18:13:13 +00:00
(- ghf*fvc::snGrad(rho) - fvc::snGrad(p_rgh))*mesh.magSf()
),
mesh.solutionDict().solver(oCorr == nOuterCorr-1 ? "UFinal" : "U")
);
}