Standard k-epsilon turbulence model for incompressible and compressible flows including rapid distortion theory (RDT) based compression term.
More...
|
| TypeName ("kEpsilon") |
|
| kEpsilon (const alphaField &alpha, const rhoField &rho, const volVectorField &U, const surfaceScalarField &alphaRhoPhi, const surfaceScalarField &phi, const transportModel &transport, const word &propertiesName=turbulenceModel::propertiesName, const word &type=typeName) |
|
virtual | ~kEpsilon ()=default |
|
virtual bool | read () |
|
tmp< volScalarField > | DkEff () const |
|
tmp< volScalarField > | DepsilonEff () const |
|
virtual tmp< volScalarField > | k () const |
|
virtual tmp< volScalarField > | epsilon () const |
|
virtual void | correct () |
|
| eddyViscosity (const word &modelName, const alphaField &alpha, const rhoField &rho, const volVectorField &U, const surfaceScalarField &alphaRhoPhi, const surfaceScalarField &phi, const transportModel &transport, const word &propertiesName) |
|
virtual | ~eddyViscosity ()=default |
|
virtual tmp< volScalarField > | nut () const |
|
virtual tmp< scalarField > | nut (const label patchi) const |
|
virtual tmp< volScalarField > | k () const=0 |
|
virtual tmp< volSymmTensorField > | R () const |
|
virtual void | validate () |
|
| linearViscousStress (const word &modelName, const alphaField &alpha, const rhoField &rho, const volVectorField &U, const surfaceScalarField &alphaRhoPhi, const surfaceScalarField &phi, const transportModel &transport, const word &propertiesName) |
|
virtual | ~linearViscousStress ()=default |
|
virtual tmp< volSymmTensorField > | devRhoReff () const |
|
virtual tmp< volSymmTensorField > | devRhoReff (const volVectorField &U) const |
|
virtual tmp< fvVectorMatrix > | divDevRhoReff (volVectorField &U) const |
|
virtual tmp< fvVectorMatrix > | divDevRhoReff (const volScalarField &rho, volVectorField &U) const |
|
| TypeName ("RAS") |
|
| declareRunTimeSelectionTable (autoPtr, RASModel, dictionary,(const alphaField &alpha, const rhoField &rho, const volVectorField &U, const surfaceScalarField &alphaRhoPhi, const surfaceScalarField &phi, const transportModel &transport, const word &propertiesName),(alpha, rho, U, alphaRhoPhi, phi, transport, propertiesName)) |
|
| RASModel (const word &type, const alphaField &alpha, const rhoField &rho, const volVectorField &U, const surfaceScalarField &alphaRhoPhi, const surfaceScalarField &phi, const transportModel &transport, const word &propertiesName) |
|
virtual | ~RASModel ()=default |
|
const dimensionedScalar & | kMin () const |
|
const dimensionedScalar & | epsilonMin () const |
|
const dimensionedScalar & | omegaMin () const |
|
dimensionedScalar & | kMin () |
|
dimensionedScalar & | epsilonMin () |
|
dimensionedScalar & | omegaMin () |
|
virtual const dictionary & | coeffDict () const |
|
virtual tmp< volScalarField > | nuEff () const |
|
virtual tmp< scalarField > | nuEff (const label patchi) const |
|
virtual tmp< volScalarField > | omega () const |
|
template<class BasicTurbulenceModel>
class Foam::RASModels::kEpsilon< BasicTurbulenceModel >
Standard k-epsilon turbulence model for incompressible and compressible flows including rapid distortion theory (RDT) based compression term.
Reference:
Standard model:
Launder, B. E., & Spalding, D. B. (1972).
Lectures in mathematical models of turbulence.
Launder, B. E., & Spalding, D. B. (1974).
The numerical computation of turbulent flows.
Computer methods in applied mechanics and engineering,
3(2), 269-289.
For the RDT-based compression term:
El Tahry, S. H. (1983).
k-epsilon equation for compressible reciprocating engine flows.
Journal of Energy, 7(4), 345-353.
The default model coefficients are
kEpsilonCoeffs
{
Cmu 0.09;
C1 1.44;
C2 1.92;
C3 -0.33;
sigmak 1.0;
sigmaEps 1.3;
}
- Source files
-
Definition at line 85 of file kEpsilon.H.