Update on turbulence viscosity limiter
This commit is contained in:
parent
d1f8b09ecb
commit
4a12f53a63
2 changed files with 6 additions and 16 deletions
|
@ -173,14 +173,9 @@ tmp<volScalarField> RASModel::muEff() const
|
||||||
new volScalarField("muEff", mut() + mu())
|
new volScalarField("muEff", mut() + mu())
|
||||||
);
|
);
|
||||||
|
|
||||||
if (gMax(tmuEff().internalField()) > muRatio_*gMax(mu().internalField()))
|
// Apply mut limiter
|
||||||
{
|
tmuEff().internalField() =
|
||||||
Info<< "Limiting turbulence viscosity" << endl;
|
Foam::min(tmuEff().internalField(), muRatio_*mu().internalField());
|
||||||
|
|
||||||
// Apply mut limiter
|
|
||||||
tmuEff().internalField() =
|
|
||||||
Foam::min(tmuEff().internalField(), muRatio_*mu().internalField());
|
|
||||||
}
|
|
||||||
|
|
||||||
return tmuEff;
|
return tmuEff;
|
||||||
}
|
}
|
||||||
|
|
|
@ -168,14 +168,9 @@ tmp<volScalarField> RASModel::nuEff() const
|
||||||
new volScalarField("nuEff", nut() + nu())
|
new volScalarField("nuEff", nut() + nu())
|
||||||
);
|
);
|
||||||
|
|
||||||
if (gMax(tnuEff().internalField()) > nuRatio_*gMax(nu().internalField()))
|
// Apply nut limiter
|
||||||
{
|
tnuEff().internalField() =
|
||||||
Info<< "Limiting turbulence viscosity" << endl;
|
Foam::min(tnuEff().internalField(), nuRatio_*nu().internalField());
|
||||||
|
|
||||||
// Apply nut limiter
|
|
||||||
tnuEff().internalField() =
|
|
||||||
Foam::min(tnuEff().internalField(), nuRatio_*nu().internalField());
|
|
||||||
}
|
|
||||||
|
|
||||||
return tnuEff;
|
return tnuEff;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue