Removed low-Re k-omega SST: not needed
This commit is contained in:
parent
6df128ded2
commit
56c2232abb
12 changed files with 0 additions and 1877 deletions
|
@ -9,7 +9,6 @@ LaunderGibsonRSTM/LaunderGibsonRSTM.C
|
||||||
realizableKE/realizableKE.C
|
realizableKE/realizableKE.C
|
||||||
SpalartAllmaras/SpalartAllmaras.C
|
SpalartAllmaras/SpalartAllmaras.C
|
||||||
kOmegaSST/kOmegaSST.C
|
kOmegaSST/kOmegaSST.C
|
||||||
kOmegaSST_LowRe/kOmegaSST_LowRe.C
|
|
||||||
|
|
||||||
/* Wall functions */
|
/* Wall functions */
|
||||||
wallFunctions = derivedFvPatchFields/wallFunctions
|
wallFunctions = derivedFvPatchFields/wallFunctions
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
if (!isType<zeroGradientFvPatchScalarField>(k_.boundaryField()[patchi]))
|
|
||||||
{
|
|
||||||
FatalErrorIn("wall-function evaluation")
|
|
||||||
<< k_.boundaryField()[patchi].type()
|
|
||||||
<< " is the wrong k patchField type on patch "
|
|
||||||
<< curPatch.name() << nl
|
|
||||||
<< " should be zeroGradient"
|
|
||||||
<< exit(FatalError);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isType<zeroGradientFvPatchScalarField>(omega_.boundaryField()[patchi]))
|
|
||||||
{
|
|
||||||
FatalErrorIn("wall-function evaluation")
|
|
||||||
<< omega_.boundaryField()[patchi].type()
|
|
||||||
<< " is the wrong omega patchField type on patch "
|
|
||||||
<< curPatch.name() << nl
|
|
||||||
<< " should be zeroGradient"
|
|
||||||
<< exit(FatalError);
|
|
||||||
}
|
|
|
@ -1,489 +0,0 @@
|
||||||
/*---------------------------------------------------------------------------*\
|
|
||||||
========= |
|
|
||||||
\\ / F ield | foam-extend: Open Source CFD
|
|
||||||
\\ / O peration |
|
|
||||||
\\ / A nd | For copyright notice see file Copyright
|
|
||||||
\\/ M anipulation |
|
|
||||||
-------------------------------------------------------------------------------
|
|
||||||
License
|
|
||||||
This file is part of foam-extend.
|
|
||||||
|
|
||||||
foam-extend is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU General Public License as published by the
|
|
||||||
Free Software Foundation, either version 3 of the License, or (at your
|
|
||||||
option) any later version.
|
|
||||||
|
|
||||||
foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
#include "kOmegaSST_LowRe.H"
|
|
||||||
#include "addToRunTimeSelectionTable.H"
|
|
||||||
#include "wallFvPatch.H"
|
|
||||||
|
|
||||||
#include "backwardsCompatibilityWallFunctions.H"
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
namespace Foam
|
|
||||||
{
|
|
||||||
namespace compressible
|
|
||||||
{
|
|
||||||
namespace RASModels
|
|
||||||
{
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
defineTypeNameAndDebug(kOmegaSST_LowRe, 0);
|
|
||||||
addToRunTimeSelectionTable(RASModel, kOmegaSST_LowRe, dictionary);
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
tmp<volScalarField> kOmegaSST_LowRe::F1(const volScalarField& CDkOmega) const
|
|
||||||
{
|
|
||||||
volScalarField CDkOmegaPlus = max
|
|
||||||
(
|
|
||||||
CDkOmega,
|
|
||||||
dimensionedScalar("1.0e-10", dimless/sqr(dimTime), 1.0e-10)
|
|
||||||
);
|
|
||||||
|
|
||||||
volScalarField arg1 = min
|
|
||||||
(
|
|
||||||
min
|
|
||||||
(
|
|
||||||
max
|
|
||||||
(
|
|
||||||
(scalar(1)/betaStar_)*sqrt(k_)/(omega_*y_),
|
|
||||||
scalar(500)*(mu()/rho_)/(sqr(y_)*omega_)
|
|
||||||
),
|
|
||||||
(4*alphaOmega2_)*k_/(CDkOmegaPlus*sqr(y_))
|
|
||||||
),
|
|
||||||
scalar(10)
|
|
||||||
);
|
|
||||||
|
|
||||||
return tanh(pow4(arg1));
|
|
||||||
}
|
|
||||||
|
|
||||||
tmp<volScalarField> kOmegaSST_LowRe::F2() const
|
|
||||||
{
|
|
||||||
volScalarField arg2 = min
|
|
||||||
(
|
|
||||||
max
|
|
||||||
(
|
|
||||||
(scalar(2)/betaStar_)*sqrt(k_)/(omega_*y_),
|
|
||||||
scalar(500)*(mu()/rho_)/(sqr(y_)*omega_)
|
|
||||||
),
|
|
||||||
scalar(100)
|
|
||||||
);
|
|
||||||
|
|
||||||
return tanh(sqr(arg2));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
kOmegaSST_LowRe::kOmegaSST_LowRe
|
|
||||||
(
|
|
||||||
const volScalarField& rho,
|
|
||||||
const volVectorField& U,
|
|
||||||
const surfaceScalarField& phi,
|
|
||||||
const basicThermo& thermophysicalModel
|
|
||||||
)
|
|
||||||
:
|
|
||||||
RASModel(typeName, rho, U, phi, thermophysicalModel),
|
|
||||||
|
|
||||||
alphaK1_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"alphaK1",
|
|
||||||
coeffDict_,
|
|
||||||
0.85034
|
|
||||||
)
|
|
||||||
),
|
|
||||||
alphaK2_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"alphaK2",
|
|
||||||
coeffDict_,
|
|
||||||
1.0
|
|
||||||
)
|
|
||||||
),
|
|
||||||
alphaOmega1_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"alphaOmega1",
|
|
||||||
coeffDict_,
|
|
||||||
0.5
|
|
||||||
)
|
|
||||||
),
|
|
||||||
alphaOmega2_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"alphaOmega2",
|
|
||||||
coeffDict_,
|
|
||||||
0.85616
|
|
||||||
)
|
|
||||||
),
|
|
||||||
Prt_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"Prt",
|
|
||||||
coeffDict_,
|
|
||||||
1.0
|
|
||||||
)
|
|
||||||
),
|
|
||||||
gamma1_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"gamma1",
|
|
||||||
coeffDict_,
|
|
||||||
0.5532
|
|
||||||
)
|
|
||||||
),
|
|
||||||
gamma2_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"gamma2",
|
|
||||||
coeffDict_,
|
|
||||||
0.4403
|
|
||||||
)
|
|
||||||
),
|
|
||||||
beta1_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"beta1",
|
|
||||||
coeffDict_,
|
|
||||||
0.075
|
|
||||||
)
|
|
||||||
),
|
|
||||||
beta2_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"beta2",
|
|
||||||
coeffDict_,
|
|
||||||
0.0828
|
|
||||||
)
|
|
||||||
),
|
|
||||||
betaStar_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"betaStar",
|
|
||||||
coeffDict_,
|
|
||||||
0.09
|
|
||||||
)
|
|
||||||
),
|
|
||||||
a1_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"a1",
|
|
||||||
coeffDict_,
|
|
||||||
0.31
|
|
||||||
)
|
|
||||||
),
|
|
||||||
c1_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"c1",
|
|
||||||
coeffDict_,
|
|
||||||
10.0
|
|
||||||
)
|
|
||||||
),
|
|
||||||
Cmu_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"Cmu",
|
|
||||||
coeffDict_,
|
|
||||||
0.09
|
|
||||||
)
|
|
||||||
),
|
|
||||||
kappa_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"kappa",
|
|
||||||
coeffDict_,
|
|
||||||
0.41
|
|
||||||
)
|
|
||||||
),
|
|
||||||
|
|
||||||
y_(mesh_),
|
|
||||||
|
|
||||||
k_
|
|
||||||
(
|
|
||||||
IOobject
|
|
||||||
(
|
|
||||||
"k",
|
|
||||||
runTime_.timeName(),
|
|
||||||
U_.db(),
|
|
||||||
IOobject::MUST_READ,
|
|
||||||
IOobject::AUTO_WRITE
|
|
||||||
),
|
|
||||||
mesh_
|
|
||||||
),
|
|
||||||
|
|
||||||
omega_
|
|
||||||
(
|
|
||||||
IOobject
|
|
||||||
(
|
|
||||||
"omega",
|
|
||||||
runTime_.timeName(),
|
|
||||||
U_.db(),
|
|
||||||
IOobject::MUST_READ,
|
|
||||||
IOobject::AUTO_WRITE
|
|
||||||
),
|
|
||||||
mesh_
|
|
||||||
),
|
|
||||||
|
|
||||||
mut_
|
|
||||||
(
|
|
||||||
IOobject
|
|
||||||
(
|
|
||||||
"mut",
|
|
||||||
runTime_.timeName(),
|
|
||||||
U_.db(),
|
|
||||||
IOobject::NO_READ,
|
|
||||||
IOobject::AUTO_WRITE
|
|
||||||
),
|
|
||||||
a1_*rho_*k_/max(a1_*omega_, F2()*sqrt(magSqr(symm(fvc::grad(U_)))))
|
|
||||||
),
|
|
||||||
alphat_
|
|
||||||
(
|
|
||||||
IOobject
|
|
||||||
(
|
|
||||||
"alphat",
|
|
||||||
runTime_.timeName(),
|
|
||||||
U_.db(),
|
|
||||||
IOobject::NO_READ,
|
|
||||||
IOobject::AUTO_WRITE
|
|
||||||
),
|
|
||||||
autoCreateAlphat("alphat", mesh_)
|
|
||||||
)
|
|
||||||
{
|
|
||||||
bound(omega_, omega0_);
|
|
||||||
|
|
||||||
mut_ =
|
|
||||||
(
|
|
||||||
a1_*rho_*k_/
|
|
||||||
max
|
|
||||||
(
|
|
||||||
a1_*omega_,
|
|
||||||
F2()*sqrt(2*magSqr(symm(fvc::grad(U_))))
|
|
||||||
)
|
|
||||||
);
|
|
||||||
mut_.correctBoundaryConditions();
|
|
||||||
|
|
||||||
alphat_ = mut_/Prt_;
|
|
||||||
alphat_.correctBoundaryConditions();
|
|
||||||
|
|
||||||
printCoeffs();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
tmp<volSymmTensorField> kOmegaSST_LowRe::R() const
|
|
||||||
{
|
|
||||||
return tmp<volSymmTensorField>
|
|
||||||
(
|
|
||||||
new volSymmTensorField
|
|
||||||
(
|
|
||||||
IOobject
|
|
||||||
(
|
|
||||||
"R",
|
|
||||||
runTime_.timeName(),
|
|
||||||
U_.db(),
|
|
||||||
IOobject::NO_READ,
|
|
||||||
IOobject::NO_WRITE
|
|
||||||
),
|
|
||||||
((2.0/3.0)*I)*k_ - (mut_/rho_)*dev(twoSymm(fvc::grad(U_))),
|
|
||||||
k_.boundaryField().types()
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
tmp<volSymmTensorField> kOmegaSST_LowRe::devRhoReff() const
|
|
||||||
{
|
|
||||||
return tmp<volSymmTensorField>
|
|
||||||
(
|
|
||||||
new volSymmTensorField
|
|
||||||
(
|
|
||||||
IOobject
|
|
||||||
(
|
|
||||||
"devRhoReff",
|
|
||||||
runTime_.timeName(),
|
|
||||||
U_.db(),
|
|
||||||
IOobject::NO_READ,
|
|
||||||
IOobject::NO_WRITE
|
|
||||||
),
|
|
||||||
-muEff()*dev(twoSymm(fvc::grad(U_)))
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
tmp<fvVectorMatrix> kOmegaSST_LowRe::divDevRhoReff(volVectorField& U) const
|
|
||||||
{
|
|
||||||
return
|
|
||||||
(
|
|
||||||
- fvm::laplacian(muEff(), U) - fvc::div(muEff()*dev2(fvc::grad(U)().T()))
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
bool kOmegaSST_LowRe::read()
|
|
||||||
{
|
|
||||||
if (RASModel::read())
|
|
||||||
{
|
|
||||||
alphaK1_.readIfPresent(coeffDict());
|
|
||||||
alphaK2_.readIfPresent(coeffDict());
|
|
||||||
alphaOmega1_.readIfPresent(coeffDict());
|
|
||||||
alphaOmega2_.readIfPresent(coeffDict());
|
|
||||||
Prt_.readIfPresent(coeffDict());
|
|
||||||
gamma1_.readIfPresent(coeffDict());
|
|
||||||
gamma2_.readIfPresent(coeffDict());
|
|
||||||
beta1_.readIfPresent(coeffDict());
|
|
||||||
beta2_.readIfPresent(coeffDict());
|
|
||||||
betaStar_.readIfPresent(coeffDict());
|
|
||||||
a1_.readIfPresent(coeffDict());
|
|
||||||
c1_.readIfPresent(coeffDict());
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void kOmegaSST_LowRe::correct()
|
|
||||||
{
|
|
||||||
// Bound in case of topological change
|
|
||||||
// HJ, 22/Aug/2007
|
|
||||||
if (mesh_.changing())
|
|
||||||
{
|
|
||||||
bound(k_, k0_);
|
|
||||||
bound(omega_, omega0_);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!turbulence_)
|
|
||||||
{
|
|
||||||
// Re-calculate viscosity
|
|
||||||
mut_ =
|
|
||||||
a1_*rho_*k_
|
|
||||||
/max(a1_*omega_, F2()*sqrt(2*magSqr(symm(fvc::grad(U_)))));
|
|
||||||
mut_.correctBoundaryConditions();
|
|
||||||
|
|
||||||
// Re-calculate thermal diffusivity
|
|
||||||
alphat_ = mut_/Prt_;
|
|
||||||
alphat_.correctBoundaryConditions();
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
RASModel::correct();
|
|
||||||
|
|
||||||
volScalarField divU = fvc::div(phi_/fvc::interpolate(rho_));
|
|
||||||
|
|
||||||
if (mesh_.changing())
|
|
||||||
{
|
|
||||||
y_.correct();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (mesh_.moving())
|
|
||||||
{
|
|
||||||
divU += fvc::div(mesh_.phi());
|
|
||||||
}
|
|
||||||
|
|
||||||
tmp<volTensorField> tgradU = fvc::grad(U_);
|
|
||||||
volScalarField S2 = magSqr(symm(tgradU()));
|
|
||||||
volScalarField GbyMu = (tgradU() && dev(twoSymm(tgradU())));
|
|
||||||
volScalarField G("RASModel::G", mut_*GbyMu);
|
|
||||||
tgradU.clear();
|
|
||||||
|
|
||||||
# include "kOmega_LowReI.H"
|
|
||||||
|
|
||||||
volScalarField CDkOmega =
|
|
||||||
(2*alphaOmega2_)*(fvc::grad(k_) & fvc::grad(omega_))/omega_;
|
|
||||||
|
|
||||||
volScalarField F1 = this->F1(CDkOmega);
|
|
||||||
volScalarField rhoGammaF1 = rho_*gamma(F1);
|
|
||||||
|
|
||||||
// Turbulent frequency equation
|
|
||||||
tmp<fvScalarMatrix> omegaEqn
|
|
||||||
(
|
|
||||||
fvm::ddt(rho_, omega_)
|
|
||||||
+ fvm::div(phi_, omega_)
|
|
||||||
- fvm::laplacian(DomegaEff(F1), omega_)
|
|
||||||
==
|
|
||||||
rhoGammaF1*GbyMu
|
|
||||||
- fvm::SuSp((2.0/3.0)*rhoGammaF1*divU, omega_)
|
|
||||||
- fvm::Sp(rho_*beta(F1)*omega_, omega_)
|
|
||||||
- fvm::SuSp
|
|
||||||
(
|
|
||||||
rho_*(F1 - scalar(1))*CDkOmega/omega_,
|
|
||||||
omega_
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
omegaEqn().relax();
|
|
||||||
|
|
||||||
# include "wallOmega_LowReI.H"
|
|
||||||
|
|
||||||
solve(omegaEqn);
|
|
||||||
bound(omega_, omega0_);
|
|
||||||
|
|
||||||
// Turbulent kinetic energy equation
|
|
||||||
tmp<fvScalarMatrix> kEqn
|
|
||||||
(
|
|
||||||
fvm::ddt(rho_, k_)
|
|
||||||
+ fvm::div(phi_, k_)
|
|
||||||
- fvm::laplacian(DkEff(F1), k_)
|
|
||||||
==
|
|
||||||
min(G, (c1_*betaStar_)*rho_*k_*omega_)
|
|
||||||
- fvm::SuSp(2.0/3.0*rho_*divU, k_)
|
|
||||||
- fvm::Sp(rho_*betaStar_*omega_, k_)
|
|
||||||
);
|
|
||||||
|
|
||||||
kEqn().relax();
|
|
||||||
solve(kEqn);
|
|
||||||
bound(k_, k0_);
|
|
||||||
|
|
||||||
|
|
||||||
// Re-calculate viscosity
|
|
||||||
mut_ = a1_*rho_*k_/max(a1_*omega_, F2()*sqrt(2*S2));
|
|
||||||
mut_.correctBoundaryConditions();
|
|
||||||
|
|
||||||
// Re-calculate thermal diffusivity
|
|
||||||
alphat_ = mut_/Prt_;
|
|
||||||
alphat_.correctBoundaryConditions();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
} // End namespace RASModels
|
|
||||||
} // End namespace compressible
|
|
||||||
} // End namespace Foam
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
|
@ -1,294 +0,0 @@
|
||||||
/*---------------------------------------------------------------------------*\
|
|
||||||
========= |
|
|
||||||
\\ / F ield | foam-extend: Open Source CFD
|
|
||||||
\\ / O peration |
|
|
||||||
\\ / A nd | For copyright notice see file Copyright
|
|
||||||
\\/ M anipulation |
|
|
||||||
-------------------------------------------------------------------------------
|
|
||||||
License
|
|
||||||
This file is part of foam-extend.
|
|
||||||
|
|
||||||
foam-extend is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU General Public License as published by the
|
|
||||||
Free Software Foundation, either version 3 of the License, or (at your
|
|
||||||
option) any later version.
|
|
||||||
|
|
||||||
foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
Class
|
|
||||||
Foam::compressible::RASModels::kOmegaSST_LowRe
|
|
||||||
|
|
||||||
Description
|
|
||||||
Implementation of the k-omega-SST turbulence model for compressible flows
|
|
||||||
with low-Re near-wall treatment.
|
|
||||||
|
|
||||||
Turbulence model described in:
|
|
||||||
@verbatim
|
|
||||||
AlAA 93-2906
|
|
||||||
Zonal Two Equation k-cl, Turbulence Models for Aerodynamic Flows.
|
|
||||||
Florian R. Menter
|
|
||||||
@endverbatim
|
|
||||||
|
|
||||||
Note that this implementation is written in terms of alpha diffusion
|
|
||||||
coefficients rather than the more traditional sigma (alpha = 1/sigma) so
|
|
||||||
that the blending can be applied to all coefficuients in a consistent
|
|
||||||
manner. The paper suggests that sigma is blended but this would not be
|
|
||||||
consistent with the blending of the k-epsilon and k-omega models.
|
|
||||||
|
|
||||||
Also note that the error in the last term of equation (2) relating to
|
|
||||||
sigma has been corrected.
|
|
||||||
|
|
||||||
Wall-functions are applied in this implementation by using equations (14)
|
|
||||||
to specify the near-wall omega as appropriate.
|
|
||||||
|
|
||||||
The blending functions (15) and (16) are not currently used because of the
|
|
||||||
uncertainty in their origin, range of applicability and that is y+ becomes
|
|
||||||
sufficiently small blending u_tau in this manner clearly becomes nonsense.
|
|
||||||
|
|
||||||
The default model coefficients correspond to the following:
|
|
||||||
@verbatim
|
|
||||||
kOmegaSST_LowRe
|
|
||||||
{
|
|
||||||
alphaK1 0.85034;
|
|
||||||
alphaK2 1.0;
|
|
||||||
alphaOmega1 0.5;
|
|
||||||
alphaOmega2 0.85616;
|
|
||||||
Prt 1.0; // only for compressible
|
|
||||||
beta1 0.075;
|
|
||||||
beta2 0.0828;
|
|
||||||
betaStar 0.09;
|
|
||||||
gamma1 0.5532;
|
|
||||||
gamma2 0.4403;
|
|
||||||
a1 0.31;
|
|
||||||
c1 10.0;
|
|
||||||
}
|
|
||||||
@endverbatim
|
|
||||||
|
|
||||||
SourceFiles
|
|
||||||
kOmegaSST_LowRe.C
|
|
||||||
kOmegaWallFunctionsI.H
|
|
||||||
kOmegaWallViscosityI.H
|
|
||||||
wallOmegaI.H
|
|
||||||
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
#ifndef compressiblekOmegaSST_LowRe_H
|
|
||||||
#define compressiblekOmegaSST_LowRe_H
|
|
||||||
|
|
||||||
#include "RASModel.H"
|
|
||||||
#include "wallDist.H"
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
namespace Foam
|
|
||||||
{
|
|
||||||
namespace compressible
|
|
||||||
{
|
|
||||||
namespace RASModels
|
|
||||||
{
|
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*\
|
|
||||||
Class kOmegaSST_LowRe Declaration
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
class kOmegaSST_LowRe
|
|
||||||
:
|
|
||||||
public RASModel
|
|
||||||
{
|
|
||||||
// Private data
|
|
||||||
|
|
||||||
// Model coefficients
|
|
||||||
|
|
||||||
dimensionedScalar alphaK1_;
|
|
||||||
dimensionedScalar alphaK2_;
|
|
||||||
|
|
||||||
dimensionedScalar alphaOmega1_;
|
|
||||||
dimensionedScalar alphaOmega2_;
|
|
||||||
|
|
||||||
dimensionedScalar Prt_;
|
|
||||||
|
|
||||||
dimensionedScalar gamma1_;
|
|
||||||
dimensionedScalar gamma2_;
|
|
||||||
|
|
||||||
dimensionedScalar beta1_;
|
|
||||||
dimensionedScalar beta2_;
|
|
||||||
|
|
||||||
dimensionedScalar betaStar_;
|
|
||||||
|
|
||||||
dimensionedScalar a1_;
|
|
||||||
dimensionedScalar c1_;
|
|
||||||
|
|
||||||
dimensionedScalar Cmu_;
|
|
||||||
dimensionedScalar kappa_;
|
|
||||||
|
|
||||||
|
|
||||||
//- Wall distance
|
|
||||||
// Note: different to wall distance in parent RASModel
|
|
||||||
wallDist y_;
|
|
||||||
|
|
||||||
// Fields
|
|
||||||
|
|
||||||
volScalarField k_;
|
|
||||||
volScalarField omega_;
|
|
||||||
volScalarField mut_;
|
|
||||||
volScalarField alphat_;
|
|
||||||
|
|
||||||
|
|
||||||
// Private member functions
|
|
||||||
|
|
||||||
tmp<volScalarField> F1(const volScalarField& CDkOmega) const;
|
|
||||||
tmp<volScalarField> F2() const;
|
|
||||||
|
|
||||||
tmp<volScalarField> blend
|
|
||||||
(
|
|
||||||
const volScalarField& F1,
|
|
||||||
const dimensionedScalar& psi1,
|
|
||||||
const dimensionedScalar& psi2
|
|
||||||
) const
|
|
||||||
{
|
|
||||||
return F1*(psi1 - psi2) + psi2;
|
|
||||||
}
|
|
||||||
|
|
||||||
tmp<volScalarField> alphaK(const volScalarField& F1) const
|
|
||||||
{
|
|
||||||
return blend(F1, alphaK1_, alphaK2_);
|
|
||||||
}
|
|
||||||
|
|
||||||
tmp<volScalarField> alphaOmega(const volScalarField& F1) const
|
|
||||||
{
|
|
||||||
return blend(F1, alphaOmega1_, alphaOmega2_);
|
|
||||||
}
|
|
||||||
|
|
||||||
tmp<volScalarField> beta(const volScalarField& F1) const
|
|
||||||
{
|
|
||||||
return blend(F1, beta1_, beta2_);
|
|
||||||
}
|
|
||||||
|
|
||||||
tmp<volScalarField> gamma(const volScalarField& F1) const
|
|
||||||
{
|
|
||||||
return blend(F1, gamma1_, gamma2_);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
|
||||||
|
|
||||||
//- Runtime type information
|
|
||||||
TypeName("kOmegaSST_LowRe");
|
|
||||||
|
|
||||||
|
|
||||||
// Constructors
|
|
||||||
|
|
||||||
//- Construct from components
|
|
||||||
kOmegaSST_LowRe
|
|
||||||
(
|
|
||||||
const volScalarField& rho,
|
|
||||||
const volVectorField& U,
|
|
||||||
const surfaceScalarField& phi,
|
|
||||||
const basicThermo& thermophysicalModel
|
|
||||||
);
|
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
|
||||||
|
|
||||||
virtual ~kOmegaSST_LowRe()
|
|
||||||
{}
|
|
||||||
|
|
||||||
|
|
||||||
// Member Functions
|
|
||||||
|
|
||||||
//- Return the effective diffusivity for k
|
|
||||||
tmp<volScalarField> DkEff(const volScalarField& F1) const
|
|
||||||
{
|
|
||||||
return tmp<volScalarField>
|
|
||||||
(
|
|
||||||
new volScalarField("DkEff", alphaK(F1)*mut_ + mu())
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
//- Return the effective diffusivity for omega
|
|
||||||
tmp<volScalarField> DomegaEff(const volScalarField& F1) const
|
|
||||||
{
|
|
||||||
return tmp<volScalarField>
|
|
||||||
(
|
|
||||||
new volScalarField("DomegaEff", alphaOmega(F1)*mut_ + mu())
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual tmp<volScalarField> mut() const
|
|
||||||
{
|
|
||||||
return mut_;
|
|
||||||
}
|
|
||||||
|
|
||||||
//- Return the effective turbulent thermal diffusivity
|
|
||||||
virtual tmp<volScalarField> alphaEff() const
|
|
||||||
{
|
|
||||||
return tmp<volScalarField>
|
|
||||||
(
|
|
||||||
new volScalarField("alphaEff", alphat_ + alpha())
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
//- Return the turbulence kinetic energy
|
|
||||||
virtual tmp<volScalarField> k() const
|
|
||||||
{
|
|
||||||
return k_;
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual tmp<volScalarField> omega() const
|
|
||||||
{
|
|
||||||
return omega_;
|
|
||||||
}
|
|
||||||
|
|
||||||
//- Return the turbulence kinetic energy dissipation rate
|
|
||||||
virtual tmp<volScalarField> epsilon() const
|
|
||||||
{
|
|
||||||
return tmp<volScalarField>
|
|
||||||
(
|
|
||||||
new volScalarField
|
|
||||||
(
|
|
||||||
IOobject
|
|
||||||
(
|
|
||||||
"epsilon",
|
|
||||||
mesh_.time().timeName(),
|
|
||||||
mesh_
|
|
||||||
),
|
|
||||||
betaStar_*k_*omega_,
|
|
||||||
omega_.boundaryField().types()
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
//- Return the Reynolds stress tensor
|
|
||||||
virtual tmp<volSymmTensorField> R() const;
|
|
||||||
|
|
||||||
//- Return the effective stress tensor including the laminar stress
|
|
||||||
virtual tmp<volSymmTensorField> devRhoReff() const;
|
|
||||||
|
|
||||||
//- Return the source term for the momentum equation
|
|
||||||
virtual tmp<fvVectorMatrix> divDevRhoReff(volVectorField& U) const;
|
|
||||||
|
|
||||||
//- Solve the turbulence equations and correct the turbulence viscosity
|
|
||||||
virtual void correct();
|
|
||||||
|
|
||||||
//- Read RASProperties dictionary
|
|
||||||
virtual bool read();
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
} // End namespace RASModels
|
|
||||||
} // End namespace compressible
|
|
||||||
} // End namespace Foam
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
|
@ -1,115 +0,0 @@
|
||||||
/*---------------------------------------------------------------------------*\
|
|
||||||
========= |
|
|
||||||
\\ / F ield | foam-extend: Open Source CFD
|
|
||||||
\\ / O peration |
|
|
||||||
\\ / A nd | For copyright notice see file Copyright
|
|
||||||
\\/ M anipulation |
|
|
||||||
-------------------------------------------------------------------------------
|
|
||||||
License
|
|
||||||
This file is part of foam-extend.
|
|
||||||
|
|
||||||
foam-extend is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU General Public License as published by the
|
|
||||||
Free Software Foundation, either version 3 of the License, or (at your
|
|
||||||
option) any later version.
|
|
||||||
|
|
||||||
foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
Global
|
|
||||||
kOmegaWallFunctions
|
|
||||||
|
|
||||||
Description
|
|
||||||
Calculate wall generation and frequency omega from wall-functions.
|
|
||||||
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
{
|
|
||||||
labelList cellBoundaryFaceCount(omega_.size(), 0);
|
|
||||||
|
|
||||||
scalar Cmu25 = pow(Cmu_.value(), 0.25);
|
|
||||||
|
|
||||||
const fvPatchList& patches = mesh_.boundary();
|
|
||||||
|
|
||||||
//- Initialise the near-wall omega and G fields to zero
|
|
||||||
forAll(patches, patchi)
|
|
||||||
{
|
|
||||||
const fvPatch& curPatch = patches[patchi];
|
|
||||||
|
|
||||||
if (isType<wallFvPatch>(curPatch))
|
|
||||||
{
|
|
||||||
forAll(curPatch, facei)
|
|
||||||
{
|
|
||||||
label faceCelli = curPatch.faceCells()[facei];
|
|
||||||
|
|
||||||
omega_[faceCelli] = 0.0;
|
|
||||||
G[faceCelli] = 0.0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//- Accumulate the wall face contributions to omega and G
|
|
||||||
// Increment cellBoundaryFaceCount for each face for averaging
|
|
||||||
forAll(patches, patchi)
|
|
||||||
{
|
|
||||||
const fvPatch& curPatch = patches[patchi];
|
|
||||||
|
|
||||||
if (isType<wallFvPatch>(curPatch))
|
|
||||||
{
|
|
||||||
# include "checkkOmega_LowRePatchFieldTypes.H"
|
|
||||||
|
|
||||||
// const scalarField& rhow = rho_.boundaryField()[patchi];
|
|
||||||
|
|
||||||
const scalarField& muw = mu().boundaryField()[patchi];
|
|
||||||
const scalarField& mutw = mut_.boundaryField()[patchi];
|
|
||||||
|
|
||||||
scalarField magFaceGradU =
|
|
||||||
mag(U_.boundaryField()[patchi].snGrad());
|
|
||||||
|
|
||||||
forAll(curPatch, facei)
|
|
||||||
{
|
|
||||||
label faceCelli = curPatch.faceCells()[facei];
|
|
||||||
|
|
||||||
// For corner cells (with two boundary or more faces),
|
|
||||||
// omega and G in the near-wall cell are calculated
|
|
||||||
// as an average
|
|
||||||
|
|
||||||
cellBoundaryFaceCount[faceCelli]++;
|
|
||||||
|
|
||||||
omega_[faceCelli] += scalar(6)*muw[facei]/
|
|
||||||
(beta1_.value()*sqr(y_[faceCelli]));
|
|
||||||
|
|
||||||
G[faceCelli] +=
|
|
||||||
(mutw[facei] + muw[facei])*magFaceGradU[facei]
|
|
||||||
*Cmu25*sqrt(k_[faceCelli])/(kappa_.value()*y_[faceCelli]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// Perform the averaging
|
|
||||||
|
|
||||||
forAll(patches, patchi)
|
|
||||||
{
|
|
||||||
const fvPatch& curPatch = patches[patchi];
|
|
||||||
|
|
||||||
if (isType<wallFvPatch>(curPatch))
|
|
||||||
{
|
|
||||||
forAll(curPatch, facei)
|
|
||||||
{
|
|
||||||
label faceCelli = curPatch.faceCells()[facei];
|
|
||||||
|
|
||||||
omega_[faceCelli] /= cellBoundaryFaceCount[faceCelli];
|
|
||||||
G[faceCelli] /= cellBoundaryFaceCount[faceCelli];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
|
@ -1,50 +0,0 @@
|
||||||
/*---------------------------------------------------------------------------*\
|
|
||||||
========= |
|
|
||||||
\\ / F ield | foam-extend: Open Source CFD
|
|
||||||
\\ / O peration |
|
|
||||||
\\ / A nd | For copyright notice see file Copyright
|
|
||||||
\\/ M anipulation |
|
|
||||||
-------------------------------------------------------------------------------
|
|
||||||
License
|
|
||||||
This file is part of foam-extend.
|
|
||||||
|
|
||||||
foam-extend is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU General Public License as published by the
|
|
||||||
Free Software Foundation, either version 3 of the License, or (at your
|
|
||||||
option) any later version.
|
|
||||||
|
|
||||||
foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
Global
|
|
||||||
wallOmega
|
|
||||||
|
|
||||||
Description
|
|
||||||
Set wall dissipation in the omega matrix
|
|
||||||
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
{
|
|
||||||
const fvPatchList& patches = mesh_.boundary();
|
|
||||||
|
|
||||||
forAll(patches, patchi)
|
|
||||||
{
|
|
||||||
const fvPatch& p = patches[patchi];
|
|
||||||
|
|
||||||
if (p.isWall())
|
|
||||||
{
|
|
||||||
omegaEqn().setValues
|
|
||||||
(
|
|
||||||
p.faceCells(),
|
|
||||||
omega_.boundaryField()[patchi].patchInternalField()
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
|
@ -17,7 +17,6 @@ LienCubicKELowRe/LienCubicKELowRe.C
|
||||||
NonlinearKEShih/NonlinearKEShih.C
|
NonlinearKEShih/NonlinearKEShih.C
|
||||||
LienLeschzinerLowRe/LienLeschzinerLowRe.C
|
LienLeschzinerLowRe/LienLeschzinerLowRe.C
|
||||||
LamBremhorstKE/LamBremhorstKE.C
|
LamBremhorstKE/LamBremhorstKE.C
|
||||||
kOmegaSST_LowRe/kOmegaSST_LowRe.C
|
|
||||||
|
|
||||||
/* Wall functions */
|
/* Wall functions */
|
||||||
wallFunctions = derivedFvPatchFields/wallFunctions
|
wallFunctions = derivedFvPatchFields/wallFunctions
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
if (!isType<zeroGradientFvPatchScalarField>(k_.boundaryField()[patchi]))
|
|
||||||
{
|
|
||||||
FatalErrorIn("wall-function evaluation")
|
|
||||||
<< k_.boundaryField()[patchi].type()
|
|
||||||
<< " is the wrong k patchField type for wall-functions on patch "
|
|
||||||
<< curPatch.name() << nl
|
|
||||||
<< " should be zeroGradient"
|
|
||||||
<< exit(FatalError);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isType<zeroGradientFvPatchScalarField>(omega_.boundaryField()[patchi]))
|
|
||||||
{
|
|
||||||
FatalErrorIn("wall-function evaluation")
|
|
||||||
<< omega_.boundaryField()[patchi].type()
|
|
||||||
<< " is the wrong omega patchField type for wall-functions on patch "
|
|
||||||
<< curPatch.name() << nl
|
|
||||||
<< " should be zeroGradient"
|
|
||||||
<< exit(FatalError);
|
|
||||||
}
|
|
|
@ -1,431 +0,0 @@
|
||||||
/*---------------------------------------------------------------------------*\
|
|
||||||
========= |
|
|
||||||
\\ / F ield | foam-extend: Open Source CFD
|
|
||||||
\\ / O peration |
|
|
||||||
\\ / A nd | For copyright notice see file Copyright
|
|
||||||
\\/ M anipulation |
|
|
||||||
-------------------------------------------------------------------------------
|
|
||||||
License
|
|
||||||
This file is part of foam-extend.
|
|
||||||
|
|
||||||
foam-extend is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU General Public License as published by the
|
|
||||||
Free Software Foundation, either version 3 of the License, or (at your
|
|
||||||
option) any later version.
|
|
||||||
|
|
||||||
foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
#include "kOmegaSST_LowRe.H"
|
|
||||||
#include "addToRunTimeSelectionTable.H"
|
|
||||||
#include "wallFvPatch.H"
|
|
||||||
|
|
||||||
#include "backwardsCompatibilityWallFunctions.H"
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
namespace Foam
|
|
||||||
{
|
|
||||||
namespace incompressible
|
|
||||||
{
|
|
||||||
namespace RASModels
|
|
||||||
{
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
defineTypeNameAndDebug(kOmegaSST_LowRe, 0);
|
|
||||||
addToRunTimeSelectionTable(RASModel, kOmegaSST_LowRe, dictionary);
|
|
||||||
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
tmp<volScalarField> kOmegaSST_LowRe::F1(const volScalarField& CDkOmega) const
|
|
||||||
{
|
|
||||||
volScalarField CDkOmegaPlus = max
|
|
||||||
(
|
|
||||||
CDkOmega,
|
|
||||||
dimensionedScalar("1.0e-10", dimless/sqr(dimTime), 1.0e-10)
|
|
||||||
);
|
|
||||||
|
|
||||||
volScalarField arg1 = min
|
|
||||||
(
|
|
||||||
min
|
|
||||||
(
|
|
||||||
max
|
|
||||||
(
|
|
||||||
(scalar(1)/betaStar_)*sqrt(k_)/(omega_*y_),
|
|
||||||
scalar(500)*nu()/(sqr(y_)*omega_)
|
|
||||||
),
|
|
||||||
(4*alphaOmega2_)*k_/(CDkOmegaPlus*sqr(y_))
|
|
||||||
),
|
|
||||||
scalar(10)
|
|
||||||
);
|
|
||||||
|
|
||||||
return tanh(pow4(arg1));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
tmp<volScalarField> kOmegaSST_LowRe::F2() const
|
|
||||||
{
|
|
||||||
volScalarField arg2 = min
|
|
||||||
(
|
|
||||||
max
|
|
||||||
(
|
|
||||||
(scalar(2)/betaStar_)*sqrt(k_)/(omega_*y_),
|
|
||||||
scalar(500)*nu()/(sqr(y_)*omega_)
|
|
||||||
),
|
|
||||||
scalar(100)
|
|
||||||
);
|
|
||||||
|
|
||||||
return tanh(sqr(arg2));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
kOmegaSST_LowRe::kOmegaSST_LowRe
|
|
||||||
(
|
|
||||||
const volVectorField& U,
|
|
||||||
const surfaceScalarField& phi,
|
|
||||||
transportModel& lamTransportModel
|
|
||||||
)
|
|
||||||
:
|
|
||||||
RASModel(typeName, U, phi, lamTransportModel),
|
|
||||||
|
|
||||||
alphaK1_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"alphaK1",
|
|
||||||
coeffDict_,
|
|
||||||
0.85034
|
|
||||||
)
|
|
||||||
),
|
|
||||||
alphaK2_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"alphaK2",
|
|
||||||
coeffDict_,
|
|
||||||
1.0
|
|
||||||
)
|
|
||||||
),
|
|
||||||
alphaOmega1_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"alphaOmega1",
|
|
||||||
coeffDict_,
|
|
||||||
0.5
|
|
||||||
)
|
|
||||||
),
|
|
||||||
alphaOmega2_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"alphaOmega2",
|
|
||||||
coeffDict_,
|
|
||||||
0.85616
|
|
||||||
)
|
|
||||||
),
|
|
||||||
gamma1_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"gamma1",
|
|
||||||
coeffDict_,
|
|
||||||
0.5532
|
|
||||||
)
|
|
||||||
),
|
|
||||||
gamma2_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"gamma2",
|
|
||||||
coeffDict_,
|
|
||||||
0.4403
|
|
||||||
)
|
|
||||||
),
|
|
||||||
beta1_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"beta1",
|
|
||||||
coeffDict_,
|
|
||||||
0.075
|
|
||||||
)
|
|
||||||
),
|
|
||||||
beta2_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"beta2",
|
|
||||||
coeffDict_,
|
|
||||||
0.0828
|
|
||||||
)
|
|
||||||
),
|
|
||||||
betaStar_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"betaStar",
|
|
||||||
coeffDict_,
|
|
||||||
0.09
|
|
||||||
)
|
|
||||||
),
|
|
||||||
a1_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"a1",
|
|
||||||
coeffDict_,
|
|
||||||
0.31
|
|
||||||
)
|
|
||||||
),
|
|
||||||
c1_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"c1",
|
|
||||||
coeffDict_,
|
|
||||||
10.0
|
|
||||||
)
|
|
||||||
),
|
|
||||||
Cmu_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"Cmu",
|
|
||||||
coeffDict_,
|
|
||||||
0.09
|
|
||||||
)
|
|
||||||
),
|
|
||||||
kappa_
|
|
||||||
(
|
|
||||||
dimensioned<scalar>::lookupOrAddToDict
|
|
||||||
(
|
|
||||||
"kappa",
|
|
||||||
coeffDict_,
|
|
||||||
0.41
|
|
||||||
)
|
|
||||||
),
|
|
||||||
|
|
||||||
y_(mesh_),
|
|
||||||
|
|
||||||
k_
|
|
||||||
(
|
|
||||||
IOobject
|
|
||||||
(
|
|
||||||
"k",
|
|
||||||
runTime_.timeName(),
|
|
||||||
U_.db(),
|
|
||||||
IOobject::MUST_READ,
|
|
||||||
IOobject::AUTO_WRITE
|
|
||||||
),
|
|
||||||
mesh_
|
|
||||||
),
|
|
||||||
|
|
||||||
omega_
|
|
||||||
(
|
|
||||||
IOobject
|
|
||||||
(
|
|
||||||
"omega",
|
|
||||||
runTime_.timeName(),
|
|
||||||
U_.db(),
|
|
||||||
IOobject::MUST_READ,
|
|
||||||
IOobject::AUTO_WRITE
|
|
||||||
),
|
|
||||||
mesh_
|
|
||||||
),
|
|
||||||
nut_
|
|
||||||
(
|
|
||||||
IOobject
|
|
||||||
(
|
|
||||||
"nut",
|
|
||||||
runTime_.timeName(),
|
|
||||||
U_.db(),
|
|
||||||
IOobject::NO_READ,
|
|
||||||
IOobject::AUTO_WRITE
|
|
||||||
),
|
|
||||||
a1_*k_/max(a1_*(omega_ + omegaSmall_), F2()*mag(symm(fvc::grad(U_))))
|
|
||||||
)
|
|
||||||
{
|
|
||||||
bound(omega_, omega0_);
|
|
||||||
|
|
||||||
nut_ = a1_*k_/max(a1_*omega_, F2()*sqrt(2.0)*mag(symm(fvc::grad(U_))));
|
|
||||||
nut_.correctBoundaryConditions();
|
|
||||||
|
|
||||||
printCoeffs();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
tmp<volSymmTensorField> kOmegaSST_LowRe::R() const
|
|
||||||
{
|
|
||||||
return tmp<volSymmTensorField>
|
|
||||||
(
|
|
||||||
new volSymmTensorField
|
|
||||||
(
|
|
||||||
IOobject
|
|
||||||
(
|
|
||||||
"R",
|
|
||||||
runTime_.timeName(),
|
|
||||||
U_.db(),
|
|
||||||
IOobject::NO_READ,
|
|
||||||
IOobject::NO_WRITE
|
|
||||||
),
|
|
||||||
((2.0/3.0)*I)*k_ - nut_*twoSymm(fvc::grad(U_)),
|
|
||||||
k_.boundaryField().types()
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
tmp<volSymmTensorField> kOmegaSST_LowRe::devReff() const
|
|
||||||
{
|
|
||||||
return tmp<volSymmTensorField>
|
|
||||||
(
|
|
||||||
new volSymmTensorField
|
|
||||||
(
|
|
||||||
IOobject
|
|
||||||
(
|
|
||||||
"devRhoReff",
|
|
||||||
runTime_.timeName(),
|
|
||||||
U_.db(),
|
|
||||||
IOobject::NO_READ,
|
|
||||||
IOobject::NO_WRITE
|
|
||||||
),
|
|
||||||
-nuEff()*dev(twoSymm(fvc::grad(U_)))
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
tmp<fvVectorMatrix> kOmegaSST_LowRe::divDevReff(volVectorField& U) const
|
|
||||||
{
|
|
||||||
return
|
|
||||||
(
|
|
||||||
- fvm::laplacian(nuEff(), U)
|
|
||||||
- fvc::div(nuEff()*dev(fvc::grad(U)().T()))
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
bool kOmegaSST_LowRe::read()
|
|
||||||
{
|
|
||||||
if (RASModel::read())
|
|
||||||
{
|
|
||||||
alphaK1_.readIfPresent(coeffDict());
|
|
||||||
alphaK2_.readIfPresent(coeffDict());
|
|
||||||
alphaOmega1_.readIfPresent(coeffDict());
|
|
||||||
alphaOmega2_.readIfPresent(coeffDict());
|
|
||||||
gamma1_.readIfPresent(coeffDict());
|
|
||||||
gamma2_.readIfPresent(coeffDict());
|
|
||||||
beta1_.readIfPresent(coeffDict());
|
|
||||||
beta2_.readIfPresent(coeffDict());
|
|
||||||
betaStar_.readIfPresent(coeffDict());
|
|
||||||
a1_.readIfPresent(coeffDict());
|
|
||||||
c1_.readIfPresent(coeffDict());
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void kOmegaSST_LowRe::correct()
|
|
||||||
{
|
|
||||||
// Bound in case of topological change
|
|
||||||
// HJ, 22/Aug/2007
|
|
||||||
if (mesh_.changing())
|
|
||||||
{
|
|
||||||
bound(k_, k0_);
|
|
||||||
bound(omega_, omega0_);
|
|
||||||
}
|
|
||||||
|
|
||||||
RASModel::correct();
|
|
||||||
|
|
||||||
if (!turbulence_)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (mesh_.changing())
|
|
||||||
{
|
|
||||||
y_.correct();
|
|
||||||
}
|
|
||||||
|
|
||||||
volScalarField S2 = magSqr(symm(fvc::grad(U_)));
|
|
||||||
volScalarField G("RASModel::G", nut_*2*S2);
|
|
||||||
|
|
||||||
# include "kOmega_LowReI.H"
|
|
||||||
|
|
||||||
volScalarField CDkOmega =
|
|
||||||
(2*alphaOmega2_)*(fvc::grad(k_) & fvc::grad(omega_))/omega_;
|
|
||||||
|
|
||||||
volScalarField F1 = this->F1(CDkOmega);
|
|
||||||
|
|
||||||
// Turbulent frequency equation
|
|
||||||
tmp<fvScalarMatrix> omegaEqn
|
|
||||||
(
|
|
||||||
fvm::ddt(omega_)
|
|
||||||
+ fvm::div(phi_, omega_)
|
|
||||||
+ fvm::SuSp(-fvc::div(phi_), omega_)
|
|
||||||
- fvm::laplacian(DomegaEff(F1), omega_)
|
|
||||||
==
|
|
||||||
gamma(F1)*2*S2
|
|
||||||
- fvm::Sp(beta(F1)*omega_, omega_)
|
|
||||||
- fvm::SuSp
|
|
||||||
(
|
|
||||||
(F1 - scalar(1))*CDkOmega/omega_,
|
|
||||||
omega_
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
omegaEqn().relax();
|
|
||||||
|
|
||||||
# include "wallOmega_LowReI.H"
|
|
||||||
|
|
||||||
solve(omegaEqn);
|
|
||||||
bound(omega_, omega0_);
|
|
||||||
|
|
||||||
// Turbulent kinetic energy equation
|
|
||||||
tmp<fvScalarMatrix> kEqn
|
|
||||||
(
|
|
||||||
fvm::ddt(k_)
|
|
||||||
+ fvm::div(phi_, k_)
|
|
||||||
+ fvm::SuSp(-fvc::div(phi_), k_)
|
|
||||||
- fvm::laplacian(DkEff(F1), k_)
|
|
||||||
==
|
|
||||||
min(G, c1_*betaStar_*k_*omega_)
|
|
||||||
- fvm::Sp(betaStar_*omega_, k_)
|
|
||||||
);
|
|
||||||
|
|
||||||
kEqn().relax();
|
|
||||||
solve(kEqn);
|
|
||||||
bound(k_, k0_);
|
|
||||||
|
|
||||||
|
|
||||||
// Re-calculate viscosity
|
|
||||||
nut_ = a1_*k_/max(a1_*omega_, F2()*sqrt(2*S2));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
} // End namespace RASModels
|
|
||||||
} // End namespace incompressible
|
|
||||||
} // End namespace Foam
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
|
@ -1,295 +0,0 @@
|
||||||
/*---------------------------------------------------------------------------*\
|
|
||||||
========= |
|
|
||||||
\\ / F ield | foam-extend: Open Source CFD
|
|
||||||
\\ / O peration |
|
|
||||||
\\ / A nd | For copyright notice see file Copyright
|
|
||||||
\\/ M anipulation |
|
|
||||||
-------------------------------------------------------------------------------
|
|
||||||
License
|
|
||||||
This file is part of foam-extend.
|
|
||||||
|
|
||||||
foam-extend is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU General Public License as published by the
|
|
||||||
Free Software Foundation, either version 3 of the License, or (at your
|
|
||||||
option) any later version.
|
|
||||||
|
|
||||||
foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
Class
|
|
||||||
Foam::incompressible::RASModels::kOmegaSST_LowRe
|
|
||||||
|
|
||||||
Description
|
|
||||||
Implementation of the k-omega-SST turbulence model for incompressible
|
|
||||||
flows.
|
|
||||||
|
|
||||||
Turbulence model described in:
|
|
||||||
@verbatim
|
|
||||||
Menter, F., Esch, T.
|
|
||||||
"Elements of Industrial Heat Transfer Prediction"
|
|
||||||
16th Brazilian Congress of Mechanical Engineering (COBEM),
|
|
||||||
Nov. 2001
|
|
||||||
@endverbatim
|
|
||||||
|
|
||||||
Note that this implementation is written in terms of alpha diffusion
|
|
||||||
coefficients rather than the more traditional sigma (alpha = 1/sigma) so
|
|
||||||
that the blending can be applied to all coefficuients in a consistent
|
|
||||||
manner. The paper suggests that sigma is blended but this would not be
|
|
||||||
consistent with the blending of the k-epsilon and k-omega models.
|
|
||||||
|
|
||||||
Also note that the error in the last term of equation (2) relating to
|
|
||||||
sigma has been corrected.
|
|
||||||
|
|
||||||
Wall-functions are applied in this implementation by using equations (14)
|
|
||||||
to specify the near-wall omega as appropriate.
|
|
||||||
|
|
||||||
The blending functions (15) and (16) are not currently used because of the
|
|
||||||
uncertainty in their origin, range of applicability and that is y+ becomes
|
|
||||||
sufficiently small blending u_tau in this manner clearly becomes nonsense.
|
|
||||||
|
|
||||||
The default model coefficients correspond to the following:
|
|
||||||
@verbatim
|
|
||||||
kOmegaSST_LowRe
|
|
||||||
{
|
|
||||||
alphaK1 0.85034;
|
|
||||||
alphaK2 1.0;
|
|
||||||
alphaOmega1 0.5;
|
|
||||||
alphaOmega2 0.85616;
|
|
||||||
beta1 0.075;
|
|
||||||
beta2 0.0828;
|
|
||||||
betaStar 0.09;
|
|
||||||
gamma1 0.5532;
|
|
||||||
gamma2 0.4403;
|
|
||||||
a1 0.31;
|
|
||||||
c1 10.0;
|
|
||||||
}
|
|
||||||
@endverbatim
|
|
||||||
|
|
||||||
SourceFiles
|
|
||||||
kOmegaSST_LowRe.C
|
|
||||||
kOmegaWallFunctionsI.H
|
|
||||||
kOmegaWallViscosityI.H
|
|
||||||
wallOmegaI.H
|
|
||||||
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
#ifndef kOmegaSST_LowRe_H
|
|
||||||
#define kOmegaSST_LowRe_H
|
|
||||||
|
|
||||||
#include "RASModel.H"
|
|
||||||
#include "wallDist.H"
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
namespace Foam
|
|
||||||
{
|
|
||||||
namespace incompressible
|
|
||||||
{
|
|
||||||
namespace RASModels
|
|
||||||
{
|
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*\
|
|
||||||
Class kOmega Declaration
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
class kOmegaSST_LowRe
|
|
||||||
:
|
|
||||||
public RASModel
|
|
||||||
{
|
|
||||||
// Private data
|
|
||||||
|
|
||||||
// Model coefficients
|
|
||||||
|
|
||||||
dimensionedScalar alphaK1_;
|
|
||||||
dimensionedScalar alphaK2_;
|
|
||||||
|
|
||||||
dimensionedScalar alphaOmega1_;
|
|
||||||
dimensionedScalar alphaOmega2_;
|
|
||||||
|
|
||||||
dimensionedScalar gamma1_;
|
|
||||||
dimensionedScalar gamma2_;
|
|
||||||
|
|
||||||
dimensionedScalar beta1_;
|
|
||||||
dimensionedScalar beta2_;
|
|
||||||
|
|
||||||
dimensionedScalar betaStar_;
|
|
||||||
|
|
||||||
dimensionedScalar a1_;
|
|
||||||
dimensionedScalar c1_;
|
|
||||||
|
|
||||||
dimensionedScalar Cmu_;
|
|
||||||
dimensionedScalar kappa_;
|
|
||||||
|
|
||||||
|
|
||||||
//- Wall distance field
|
|
||||||
// Note: different to wall distance in parent RASModel
|
|
||||||
wallDist y_;
|
|
||||||
|
|
||||||
// Fields
|
|
||||||
|
|
||||||
volScalarField k_;
|
|
||||||
volScalarField omega_;
|
|
||||||
volScalarField nut_;
|
|
||||||
|
|
||||||
|
|
||||||
// Private member functions
|
|
||||||
|
|
||||||
tmp<volScalarField> F1(const volScalarField& CDkOmega) const;
|
|
||||||
tmp<volScalarField> F2() const;
|
|
||||||
|
|
||||||
tmp<volScalarField> blend
|
|
||||||
(
|
|
||||||
const volScalarField& F1,
|
|
||||||
const dimensionedScalar& psi1,
|
|
||||||
const dimensionedScalar& psi2
|
|
||||||
) const
|
|
||||||
{
|
|
||||||
return F1*(psi1 - psi2) + psi2;
|
|
||||||
}
|
|
||||||
|
|
||||||
tmp<volScalarField> alphaK
|
|
||||||
(
|
|
||||||
const volScalarField& F1
|
|
||||||
) const
|
|
||||||
{
|
|
||||||
return blend(F1, alphaK1_, alphaK2_);
|
|
||||||
}
|
|
||||||
|
|
||||||
tmp<volScalarField> alphaOmega
|
|
||||||
(
|
|
||||||
const volScalarField& F1
|
|
||||||
) const
|
|
||||||
{
|
|
||||||
return blend(F1, alphaOmega1_, alphaOmega2_);
|
|
||||||
}
|
|
||||||
|
|
||||||
tmp<volScalarField> beta
|
|
||||||
(
|
|
||||||
const volScalarField& F1
|
|
||||||
) const
|
|
||||||
{
|
|
||||||
return blend(F1, beta1_, beta2_);
|
|
||||||
}
|
|
||||||
|
|
||||||
tmp<volScalarField> gamma
|
|
||||||
(
|
|
||||||
const volScalarField& F1
|
|
||||||
) const
|
|
||||||
{
|
|
||||||
return blend(F1, gamma1_, gamma2_);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
|
||||||
|
|
||||||
//- Runtime type information
|
|
||||||
TypeName("kOmegaSST_LowRe");
|
|
||||||
|
|
||||||
|
|
||||||
// Constructors
|
|
||||||
|
|
||||||
//- Construct from components
|
|
||||||
kOmegaSST_LowRe
|
|
||||||
(
|
|
||||||
const volVectorField& U,
|
|
||||||
const surfaceScalarField& phi,
|
|
||||||
transportModel& transport
|
|
||||||
);
|
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
|
||||||
|
|
||||||
virtual ~kOmegaSST_LowRe()
|
|
||||||
{}
|
|
||||||
|
|
||||||
|
|
||||||
// Member Functions
|
|
||||||
|
|
||||||
//- Return the turbulence viscosity
|
|
||||||
virtual tmp<volScalarField> nut() const
|
|
||||||
{
|
|
||||||
return nut_;
|
|
||||||
}
|
|
||||||
|
|
||||||
//- Return the effective diffusivity for k
|
|
||||||
tmp<volScalarField> DkEff(const volScalarField& F1) const
|
|
||||||
{
|
|
||||||
return tmp<volScalarField>
|
|
||||||
(
|
|
||||||
new volScalarField("DkEff", alphaK(F1)*nut_ + nu())
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
//- Return the effective diffusivity for omega
|
|
||||||
tmp<volScalarField> DomegaEff(const volScalarField& F1) const
|
|
||||||
{
|
|
||||||
return tmp<volScalarField>
|
|
||||||
(
|
|
||||||
new volScalarField("DomegaEff", alphaOmega(F1)*nut_ + nu())
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
//- Return the turbulence kinetic energy
|
|
||||||
virtual tmp<volScalarField> k() const
|
|
||||||
{
|
|
||||||
return k_;
|
|
||||||
}
|
|
||||||
|
|
||||||
//- Return the turbulence specific dissipation rate
|
|
||||||
virtual tmp<volScalarField> omega() const
|
|
||||||
{
|
|
||||||
return omega_;
|
|
||||||
}
|
|
||||||
|
|
||||||
//- Return the turbulence kinetic energy dissipation rate
|
|
||||||
virtual tmp<volScalarField> epsilon() const
|
|
||||||
{
|
|
||||||
return tmp<volScalarField>
|
|
||||||
(
|
|
||||||
new volScalarField
|
|
||||||
(
|
|
||||||
IOobject
|
|
||||||
(
|
|
||||||
"epsilon",
|
|
||||||
mesh_.time().timeName(),
|
|
||||||
mesh_
|
|
||||||
),
|
|
||||||
betaStar_*k_*omega_,
|
|
||||||
omega_.boundaryField().types()
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
//- Return the Reynolds stress tensor
|
|
||||||
virtual tmp<volSymmTensorField> R() const;
|
|
||||||
|
|
||||||
//- Return the effective stress tensor including the laminar stress
|
|
||||||
virtual tmp<volSymmTensorField> devReff() const;
|
|
||||||
|
|
||||||
//- Return the source term for the momentum equation
|
|
||||||
virtual tmp<fvVectorMatrix> divDevReff(volVectorField& U) const;
|
|
||||||
|
|
||||||
//- Solve the turbulence equations and correct the turbulence viscosity
|
|
||||||
virtual void correct();
|
|
||||||
|
|
||||||
//- Read RASProperties dictionary
|
|
||||||
virtual bool read();
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
} // End namespace RASModels
|
|
||||||
} // namespace incompressible
|
|
||||||
} // End namespace Foam
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
|
@ -1,113 +0,0 @@
|
||||||
/*---------------------------------------------------------------------------*\
|
|
||||||
========= |
|
|
||||||
\\ / F ield | foam-extend: Open Source CFD
|
|
||||||
\\ / O peration |
|
|
||||||
\\ / A nd | For copyright notice see file Copyright
|
|
||||||
\\/ M anipulation |
|
|
||||||
-------------------------------------------------------------------------------
|
|
||||||
License
|
|
||||||
This file is part of foam-extend.
|
|
||||||
|
|
||||||
foam-extend is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU General Public License as published by the
|
|
||||||
Free Software Foundation, either version 3 of the License, or (at your
|
|
||||||
option) any later version.
|
|
||||||
|
|
||||||
foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
Global
|
|
||||||
kOmegaWallFunctions
|
|
||||||
|
|
||||||
Description
|
|
||||||
Calculate wall generation and frequency omega from wall-functions.
|
|
||||||
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
{
|
|
||||||
labelList cellBoundaryFaceCount(omega_.size(), 0);
|
|
||||||
|
|
||||||
scalar Cmu25 = pow(Cmu_.value(), 0.25);
|
|
||||||
|
|
||||||
const fvPatchList& patches = mesh_.boundary();
|
|
||||||
|
|
||||||
//- Initialise the near-wall omega and G fields to zero
|
|
||||||
forAll(patches, patchi)
|
|
||||||
{
|
|
||||||
const fvPatch& curPatch = patches[patchi];
|
|
||||||
|
|
||||||
if (isType<wallFvPatch>(curPatch))
|
|
||||||
{
|
|
||||||
forAll(curPatch, facei)
|
|
||||||
{
|
|
||||||
label faceCelli = curPatch.faceCells()[facei];
|
|
||||||
|
|
||||||
omega_[faceCelli] = 0.0;
|
|
||||||
G[faceCelli] = 0.0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//- Accumulate the wall face contributions to omega and G
|
|
||||||
// Increment cellBoundaryFaceCount for each face for averaging
|
|
||||||
forAll(patches, patchi)
|
|
||||||
{
|
|
||||||
const fvPatch& curPatch = patches[patchi];
|
|
||||||
|
|
||||||
if (isType<wallFvPatch>(curPatch))
|
|
||||||
{
|
|
||||||
# include "checkkOmega_LowRePatchFieldTypes.H"
|
|
||||||
|
|
||||||
const scalarField& nuw = nu().boundaryField()[patchi];
|
|
||||||
const scalarField& nutw = nut_.boundaryField()[patchi];
|
|
||||||
|
|
||||||
scalarField magFaceGradU =
|
|
||||||
mag(U_.boundaryField()[patchi].snGrad());
|
|
||||||
|
|
||||||
forAll(curPatch, facei)
|
|
||||||
{
|
|
||||||
label faceCelli = curPatch.faceCells()[facei];
|
|
||||||
|
|
||||||
// For corner cells (with two boundary or more faces),
|
|
||||||
// omega and G in the near-wall cell are calculated
|
|
||||||
// as an average
|
|
||||||
|
|
||||||
cellBoundaryFaceCount[faceCelli]++;
|
|
||||||
|
|
||||||
omega_[faceCelli] += scalar(6)*nuw[facei]
|
|
||||||
/(beta1_.value()*sqr(y_[faceCelli]));
|
|
||||||
|
|
||||||
G[faceCelli] +=
|
|
||||||
(nutw[facei] + nuw[facei])*magFaceGradU[facei]
|
|
||||||
*Cmu25*sqrt(k_[faceCelli])/(kappa_.value()*y_[faceCelli]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// Perform the averaging
|
|
||||||
|
|
||||||
forAll(patches, patchi)
|
|
||||||
{
|
|
||||||
const fvPatch& curPatch = patches[patchi];
|
|
||||||
|
|
||||||
if (isType<wallFvPatch>(curPatch))
|
|
||||||
{
|
|
||||||
forAll(curPatch, facei)
|
|
||||||
{
|
|
||||||
label faceCelli = curPatch.faceCells()[facei];
|
|
||||||
|
|
||||||
omega_[faceCelli] /= cellBoundaryFaceCount[faceCelli];
|
|
||||||
G[faceCelli] /= cellBoundaryFaceCount[faceCelli];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
|
@ -1,50 +0,0 @@
|
||||||
/*---------------------------------------------------------------------------*\
|
|
||||||
========= |
|
|
||||||
\\ / F ield | foam-extend: Open Source CFD
|
|
||||||
\\ / O peration |
|
|
||||||
\\ / A nd | For copyright notice see file Copyright
|
|
||||||
\\/ M anipulation |
|
|
||||||
-------------------------------------------------------------------------------
|
|
||||||
License
|
|
||||||
This file is part of foam-extend.
|
|
||||||
|
|
||||||
foam-extend is free software: you can redistribute it and/or modify it
|
|
||||||
under the terms of the GNU General Public License as published by the
|
|
||||||
Free Software Foundation, either version 3 of the License, or (at your
|
|
||||||
option) any later version.
|
|
||||||
|
|
||||||
foam-extend is distributed in the hope that it will be useful, but
|
|
||||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
Global
|
|
||||||
wallOmega
|
|
||||||
|
|
||||||
Description
|
|
||||||
Set wall dissipation in the omega matrix
|
|
||||||
|
|
||||||
\*---------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
{
|
|
||||||
const fvPatchList& patches = mesh_.boundary();
|
|
||||||
|
|
||||||
forAll(patches, patchi)
|
|
||||||
{
|
|
||||||
const fvPatch& p = patches[patchi];
|
|
||||||
|
|
||||||
if (p.isWall())
|
|
||||||
{
|
|
||||||
omegaEqn().setValues
|
|
||||||
(
|
|
||||||
p.faceCells(),
|
|
||||||
omega_.boundaryField()[patchi].patchInternalField()
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
Reference in a new issue