2010-05-12 13:27:55 +00:00
|
|
|
/*---------------------------------------------------------------------------*\
|
|
|
|
========= |
|
2013-12-11 16:09:41 +00:00
|
|
|
\\ / F ield | foam-extend: Open Source CFD
|
2016-06-20 15:00:40 +00:00
|
|
|
\\ / O peration | Version: 4.0
|
2015-05-17 13:32:07 +00:00
|
|
|
\\ / A nd | Web: http://www.foam-extend.org
|
|
|
|
\\/ M anipulation | For copyright notice see file Copyright
|
2010-05-12 13:27:55 +00:00
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
License
|
2013-12-11 16:09:41 +00:00
|
|
|
This file is part of foam-extend.
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2013-12-11 16:09:41 +00:00
|
|
|
foam-extend is free software: you can redistribute it and/or modify it
|
2010-05-12 13:27:55 +00:00
|
|
|
under the terms of the GNU General Public License as published by the
|
2013-12-11 16:09:41 +00:00
|
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
2010-05-12 13:27:55 +00:00
|
|
|
option) any later version.
|
|
|
|
|
2013-12-11 16:09:41 +00:00
|
|
|
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.
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2013-12-11 16:09:41 +00:00
|
|
|
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
Class
|
|
|
|
Foam::compressible::RASModels::PDRkEpsilon
|
|
|
|
|
|
|
|
Description
|
|
|
|
Standard k-epsilon turbulence model with additional source terms
|
|
|
|
corresponding to PDR basic drag model (\link basic.H \endlink)
|
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
The default model coefficients correspond to the following:
|
|
|
|
@verbatim
|
|
|
|
kEpsilonCoeffs
|
|
|
|
{
|
|
|
|
Cmu 0.09;
|
|
|
|
C1 1.44;
|
|
|
|
C2 1.92;
|
|
|
|
C3 -0.33; // only for compressible
|
|
|
|
sigmak 1.0; // only for compressible
|
|
|
|
sigmaEps 1.3;
|
|
|
|
Prt 1.0; // only for compressible
|
|
|
|
}
|
|
|
|
@endverbatim
|
|
|
|
|
2010-05-12 13:27:55 +00:00
|
|
|
The turbulence source term \f$ G_{R} \f$ appears in the
|
|
|
|
\f$ \kappa-\epsilon \f$ equation for the generation of turbulence due to
|
|
|
|
interaction with unresolved obstacles.
|
|
|
|
|
|
|
|
In the \f$ \epsilon \f$ equation \f$ C_{1} G_{R} \f$ is added as a source
|
|
|
|
term.
|
|
|
|
|
|
|
|
In the \f$ \kappa \f$ equation \f$ G_{R} \f$ is added as a source term.
|
|
|
|
|
|
|
|
SourceFiles
|
|
|
|
PDRkEpsilon.C
|
|
|
|
PDRkEpsilonCorrect.C
|
|
|
|
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
#ifndef compressiblePDRkEpsilon_H
|
|
|
|
#define compressiblePDRkEpsilon_H
|
|
|
|
|
|
|
|
#include "RASModel.H"
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
namespace Foam
|
|
|
|
{
|
|
|
|
namespace compressible
|
|
|
|
{
|
|
|
|
namespace RASModels
|
|
|
|
{
|
|
|
|
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
|
|
Class PDRkEpsilon Declaration
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
class PDRkEpsilon
|
|
|
|
:
|
|
|
|
public RASModel
|
|
|
|
{
|
|
|
|
// Private data
|
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
// Model coefficients
|
|
|
|
|
2010-05-12 13:27:55 +00:00
|
|
|
dimensionedScalar Cmu_;
|
|
|
|
dimensionedScalar C1_;
|
|
|
|
dimensionedScalar C2_;
|
2010-08-26 14:22:03 +00:00
|
|
|
dimensionedScalar sigmak_;
|
|
|
|
dimensionedScalar sigmaEps_;
|
|
|
|
dimensionedScalar Prt_;
|
|
|
|
|
|
|
|
// Fields
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
volScalarField k_;
|
|
|
|
volScalarField epsilon_;
|
|
|
|
volScalarField mut_;
|
2010-08-26 14:22:03 +00:00
|
|
|
volScalarField alphat_;
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
//- Runtime type information
|
|
|
|
TypeName("PDRkEpsilon");
|
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
|
2010-05-12 13:27:55 +00:00
|
|
|
// Constructors
|
|
|
|
|
|
|
|
//- Construct from components
|
|
|
|
PDRkEpsilon
|
|
|
|
(
|
|
|
|
const volScalarField& rho,
|
|
|
|
const volVectorField& U,
|
|
|
|
const surfaceScalarField& phi,
|
Vanilla backport
- in FOAM library
updated containers
backported PackedBoolList, hashedWordList, nullObject, wordRe,
backported functions to
backported int32 support
backported tableReaders
backported Function1, TimeFunction1
backported dynamicCode (for codedBCs, ...) -- needs to be mapped out
advanced error macros (FatalIOErrorInFunction, ...) -- needs to be mapped out
backported IOobject::MUST_READ_IF_MODIFIED and added IOobject::READ_IF_PRESENT_IF_MODIFIED (only in FO)
- in postProcessing
backported IO FOs (partialWrite, removeRegisteredObject, writeDictionary, writeRegisteredObject)
backported field FOs (fieldCoordinateSystemTransform, fieldValues, nearWallFields, processorField, readFields, regionSizeDistribution, streamLine, wallBoundedStreamLine)
backported fvTools FOs (calcFvcDiv, calcFvcGrad, calcMag)
backported jobControl FOs (abortCalculation)
backported utilities FOs (ourantNo, Lambda2, Peclet, Q, codedFunctionObject, pressureTools, residuals, scalarTransport, setTimeStep, timeActivatedFileUpdate, turbulenceFields, vorticity, wallShearStress)
2017-04-09 13:11:54 +00:00
|
|
|
const basicThermo& thermophysicalModel,
|
|
|
|
const word& turbulenceModelName = turbulenceModel::typeName,
|
|
|
|
const word& modelName = typeName
|
2010-05-12 13:27:55 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
//- Destructor
|
2010-05-12 13:27:55 +00:00
|
|
|
virtual ~PDRkEpsilon()
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
// Member Functions
|
|
|
|
|
|
|
|
//- Return the effective diffusivity for k
|
|
|
|
tmp<volScalarField> DkEff() const
|
|
|
|
{
|
|
|
|
return tmp<volScalarField>
|
|
|
|
(
|
2010-08-26 14:22:03 +00:00
|
|
|
new volScalarField("DkEff", mut_/sigmak_ + mu())
|
2010-05-12 13:27:55 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//- Return the effective diffusivity for epsilon
|
|
|
|
tmp<volScalarField> DepsilonEff() const
|
|
|
|
{
|
|
|
|
return tmp<volScalarField>
|
|
|
|
(
|
2010-08-26 14:22:03 +00:00
|
|
|
new volScalarField("DepsilonEff", mut_/sigmaEps_ + mu())
|
2010-05-12 13:27:55 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-20 06:20:10 +00:00
|
|
|
//- Return the turbulence viscosity
|
|
|
|
virtual tmp<volScalarField> mut() const
|
|
|
|
{
|
|
|
|
return mut_;
|
|
|
|
}
|
|
|
|
|
|
|
|
//- Return the turbulence thermal diffusivity
|
|
|
|
virtual tmp<volScalarField> alphat() const
|
|
|
|
{
|
|
|
|
return alphat_;
|
|
|
|
}
|
|
|
|
|
2010-05-12 13:27:55 +00:00
|
|
|
//- Return the effective turbulent thermal diffusivity
|
|
|
|
tmp<volScalarField> alphaEff() const
|
|
|
|
{
|
|
|
|
return tmp<volScalarField>
|
|
|
|
(
|
2010-08-26 14:22:03 +00:00
|
|
|
new volScalarField("alphaEff", alphat_ + alpha())
|
2010-05-12 13:27:55 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//- Return the turbulence kinetic energy
|
|
|
|
tmp<volScalarField> k() const
|
|
|
|
{
|
|
|
|
return k_;
|
|
|
|
}
|
|
|
|
|
|
|
|
//- Return the turbulence kinetic energy dissipation rate
|
|
|
|
tmp<volScalarField> epsilon() const
|
|
|
|
{
|
|
|
|
return epsilon_;
|
|
|
|
}
|
|
|
|
|
|
|
|
//- Return the Reynolds stress tensor
|
|
|
|
tmp<volSymmTensorField> R() const;
|
|
|
|
|
|
|
|
//- Return the effective stress tensor including the laminar stress
|
|
|
|
tmp<volSymmTensorField> devRhoReff() const;
|
|
|
|
|
|
|
|
//- Return the source term for the momentum equation
|
2016-06-06 13:59:41 +00:00
|
|
|
tmp<fvVectorMatrix> divDevRhoReff() const;
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
//- Solve the turbulence equations and correct the turbulence viscosity
|
|
|
|
void correct();
|
|
|
|
|
|
|
|
//- Read turbulenceProperties dictionary
|
|
|
|
bool read();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
} // End namespace RASModels
|
|
|
|
} // End namespace compressible
|
|
|
|
} // End namespace Foam
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// ************************************************************************* //
|