Skip to content
Snippets Groups Projects
Commit 468668d0 authored by Andrew Heather's avatar Andrew Heather
Browse files

muf -> muEff for consistency

parent c5c622e1
No related merge requests found
surfaceScalarField muf surfaceScalarField muEff
( (
"muf", "muEff",
twoPhaseProperties.muf() twoPhaseProperties.muf()
+ fvc::interpolate(rho*turbulence->nut()) + fvc::interpolate(rho*turbulence->nut())
); );
...@@ -9,8 +9,8 @@ ...@@ -9,8 +9,8 @@
( (
fvm::ddt(rho, U) fvm::ddt(rho, U)
+ fvm::div(rhoPhi, U) + fvm::div(rhoPhi, U)
- fvm::laplacian(muf, U) - fvm::laplacian(muEff, U)
- (fvc::grad(U) & fvc::grad(muf)) - (fvc::grad(U) & fvc::grad(muEff))
//- fvc::div(muf*(mesh.Sf() & fvc::interpolate(fvc::grad(U)().T()))) //- fvc::div(muf*(mesh.Sf() & fvc::interpolate(fvc::grad(U)().T())))
); );
......
surfaceScalarField muf surfaceScalarField muEff
( (
"muf", "muEff",
twoPhaseProperties->muf() twoPhaseProperties->muf()
+ fvc::interpolate(rho*turbulence->nut()) + fvc::interpolate(rho*turbulence->nut())
); );
...@@ -10,9 +10,9 @@ ...@@ -10,9 +10,9 @@
fvm::ddt(rho, U) fvm::ddt(rho, U)
+ fvm::div(rhoPhi, U) + fvm::div(rhoPhi, U)
- fvm::Sp(fvc::ddt(rho) + fvc::div(rhoPhi), U) - fvm::Sp(fvc::ddt(rho) + fvc::div(rhoPhi), U)
- fvm::laplacian(muf, U) - fvm::laplacian(muEff, U)
- (fvc::grad(U) & fvc::grad(muf)) - (fvc::grad(U) & fvc::grad(muEff))
//- fvc::div(muf*(fvc::interpolate(dev2(fvc::grad(U))) & mesh.Sf())) //- fvc::div(muEff*(fvc::interpolate(dev2(fvc::grad(U))) & mesh.Sf()))
); );
UEqn.relax(); UEqn.relax();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment