Renormalisation group k-epsilon turbulence model for incompressible and compressible flows. More...


Public Types | |
| typedef BasicMomentumTransportModel::alphaField | alphaField |
| typedef BasicMomentumTransportModel::rhoField | rhoField |
Public Types inherited from eddyViscosity< RASModel< BasicMomentumTransportModel > > | |
| typedef BasicMomentumTransportModel::alphaField | alphaField |
| typedef BasicMomentumTransportModel::rhoField | rhoField |
Public Types inherited from linearViscousStress< BasicMomentumTransportModel > | |
| typedef BasicMomentumTransportModel::alphaField | alphaField |
| typedef BasicMomentumTransportModel::rhoField | rhoField |
Public Member Functions | |
| TypeName ("RNGkEpsilon") | |
| Runtime type information. More... | |
| RNGkEpsilon (const alphaField &alpha, const rhoField &rho, const volVectorField &U, const surfaceScalarField &alphaRhoPhi, const surfaceScalarField &phi, const viscosity &viscosity, const word &type=typeName) | |
| Construct from components. More... | |
| RNGkEpsilon (const RNGkEpsilon &)=delete | |
| Disallow default bitwise copy construction. More... | |
| virtual | ~RNGkEpsilon () |
| Destructor. More... | |
| virtual bool | read () |
| Re-read model coefficients if they have changed. More... | |
| tmp< volScalarField > | DkEff () const |
| Return the effective diffusivity for k. More... | |
| tmp< volScalarField > | DepsilonEff () const |
| Return the effective diffusivity for epsilon. More... | |
| virtual tmp< volScalarField > | k () const |
| Return the turbulence kinetic energy. More... | |
| virtual tmp< volScalarField > | epsilon () const |
| Return the turbulence kinetic energy dissipation rate. More... | |
| virtual tmp< volScalarField > | omega () const |
| Return the turbulence specific dissipation rate. More... | |
| virtual void | correct () |
| Solve the turbulence equations and correct the turbulence viscosity. More... | |
| void | operator= (const RNGkEpsilon &)=delete |
| Disallow default bitwise assignment. More... | |
Public Member Functions inherited from eddyViscosity< RASModel< BasicMomentumTransportModel > > | |
| eddyViscosity (const word &modelName, const alphaField &alpha, const rhoField &rho, const volVectorField &U, const surfaceScalarField &alphaRhoPhi, const surfaceScalarField &phi, const viscosity &viscosity) | |
| Construct from components. More... | |
| virtual | ~eddyViscosity () |
| Destructor. More... | |
| virtual tmp< volScalarField > | nut () const |
| Return the turbulence viscosity. More... | |
| virtual tmp< scalarField > | nut (const label patchi) const |
| Return the turbulence viscosity on patch. More... | |
| virtual tmp< volSymmTensorField > | R () const |
| Return the Reynolds stress tensor [m^2/s^2]. More... | |
| virtual void | validate () |
| Validate the turbulence fields after construction. More... | |
Public Member Functions inherited from linearViscousStress< BasicMomentumTransportModel > | |
| linearViscousStress (const word &modelName, const alphaField &alpha, const rhoField &rho, const volVectorField &U, const surfaceScalarField &alphaRhoPhi, const surfaceScalarField &phi, const viscosity &viscosity) | |
| Construct from components. More... | |
| virtual | ~linearViscousStress () |
| Destructor. More... | |
| virtual tmp< surfaceVectorField > | devTau () const |
| Return the effective surface stress. More... | |
| virtual tmp< fvVectorMatrix > | divDevTau (volVectorField &U) const |
| Return the source term for the momentum equation. More... | |
| virtual tmp< fvVectorMatrix > | divDevTau (const volScalarField &rho, volVectorField &U) const |
| Return the source term for the momentum equation. More... | |
| template<class RhoFieldType > | |
| Foam::tmp< Foam::fvVectorMatrix > | DivDevTau (const RhoFieldType &rho, volVectorField &U) const |
Protected Member Functions | |
| tmp< volScalarField > | boundEpsilon () |
| Bound epsilon and return Cmu*sqr(k) for nut. More... | |
| virtual void | correctNut () |
| Correct the eddy-viscosity nut. More... | |
| virtual tmp< fvScalarMatrix > | kSource () const |
| Source term for the k equation. More... | |
| virtual tmp< fvScalarMatrix > | epsilonSource () const |
| Source term for the epsilon equation. More... | |
Protected Member Functions inherited from linearViscousStress< BasicMomentumTransportModel > | |
| template<class RhoFieldType > | |
| tmp< fvVectorMatrix > | DivDevTau (const RhoFieldType &rho, volVectorField &U) const |
| Return the source term for the momentum equation. More... | |
Protected Attributes | |
| dimensionedScalar | Cmu_ |
| dimensionedScalar | C1_ |
| dimensionedScalar | C2_ |
| dimensionedScalar | C3_ |
| dimensionedScalar | sigmak_ |
| dimensionedScalar | sigmaEps_ |
| dimensionedScalar | eta0_ |
| dimensionedScalar | beta_ |
| volScalarField | k_ |
| volScalarField | epsilon_ |
Protected Attributes inherited from eddyViscosity< RASModel< BasicMomentumTransportModel > > | |
| volScalarField | nut_ |
Renormalisation group k-epsilon turbulence model for incompressible and compressible flows.
Reference:
Yakhot, V., Orszag, S. A., Thangam, S.,
Gatski, T. B., & Speziale, C. G. (1992).
Development of turbulence models for shear flows
by a double expansion technique.
Physics of Fluids A: Fluid Dynamics (1989-1993), 4(7), 1510-1520.
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
RNGkEpsilonCoeffs
{
Cmu 0.0845;
C1 1.42;
C2 1.68;
C3 0;
sigmak 0.71942;
sigmaEps 0.71942;
eta0 4.38;
beta 0.012;
}
Definition at line 82 of file RNGkEpsilon.H.
| typedef BasicMomentumTransportModel::alphaField alphaField |
Definition at line 126 of file RNGkEpsilon.H.
| typedef BasicMomentumTransportModel::rhoField rhoField |
Definition at line 127 of file RNGkEpsilon.H.
| RNGkEpsilon | ( | const alphaField & | alpha, |
| const rhoField & | rho, | ||
| const volVectorField & | U, | ||
| const surfaceScalarField & | alphaRhoPhi, | ||
| const surfaceScalarField & | phi, | ||
| const viscosity & | viscosity, | ||
| const word & | type = typeName |
||
| ) |
Construct from components.
Definition at line 92 of file RNGkEpsilon.C.
References Foam::bound(), RNGkEpsilon< BasicMomentumTransportModel >::boundEpsilon(), and RNGkEpsilon< BasicMomentumTransportModel >::k_.

|
delete |
Disallow default bitwise copy construction.
|
inlinevirtual |
Destructor.
Definition at line 153 of file RNGkEpsilon.H.
|
protected |
Bound epsilon and return Cmu*sqr(k) for nut.
Definition at line 41 of file RNGkEpsilon.C.
References Foam::max(), and Foam::sqr().
Referenced by RNGkEpsilon< BasicMomentumTransportModel >::RNGkEpsilon().


|
protectedvirtual |
Correct the eddy-viscosity nut.
Implements eddyViscosity< RASModel< BasicMomentumTransportModel > >.
Definition at line 50 of file RNGkEpsilon.C.
References dictionary::New().

|
protectedvirtual |
Source term for the k equation.
Definition at line 59 of file RNGkEpsilon.C.
References Foam::dimTime, and Foam::dimVolume.
|
protectedvirtual |
Source term for the epsilon equation.
Definition at line 75 of file RNGkEpsilon.C.
References Foam::dimTime, and Foam::dimVolume.
| TypeName | ( | "RNGkEpsilon< BasicMomentumTransportModel >" | ) |
Runtime type information.
|
virtual |
Re-read model coefficients if they have changed.
Implements eddyViscosity< RASModel< BasicMomentumTransportModel > >.
Definition at line 156 of file RNGkEpsilon.C.
References Foam::read().

|
inline |
Return the effective diffusivity for k.
Definition at line 163 of file RNGkEpsilon.H.
References GeometricField< Type, GeoMesh, PrimitiveField >::New(), and eddyViscosity< RASModel< BasicMomentumTransportModel > >::nut_.

|
inline |
Return the effective diffusivity for epsilon.
Definition at line 173 of file RNGkEpsilon.H.
References GeometricField< Type, GeoMesh, PrimitiveField >::New(), and eddyViscosity< RASModel< BasicMomentumTransportModel > >::nut_.

|
inlinevirtual |
Return the turbulence kinetic energy.
Implements eddyViscosity< RASModel< BasicMomentumTransportModel > >.
Definition at line 183 of file RNGkEpsilon.H.
References RNGkEpsilon< BasicMomentumTransportModel >::k_.
|
inlinevirtual |
Return the turbulence kinetic energy dissipation rate.
Definition at line 189 of file RNGkEpsilon.H.
References RNGkEpsilon< BasicMomentumTransportModel >::epsilon_.
|
inlinevirtual |
Return the turbulence specific dissipation rate.
Definition at line 195 of file RNGkEpsilon.H.
References RNGkEpsilon< BasicMomentumTransportModel >::Cmu_, RNGkEpsilon< BasicMomentumTransportModel >::epsilon_, RNGkEpsilon< BasicMomentumTransportModel >::k_, and GeometricField< Type, GeoMesh, PrimitiveField >::New().

|
virtual |
Solve the turbulence equations and correct the turbulence viscosity.
Implements eddyViscosity< RASModel< BasicMomentumTransportModel > >.
Definition at line 179 of file RNGkEpsilon.C.
References Foam::fvc::absolute(), alpha(), Foam::bound(), tmp< T >::clear(), fvConstraints::constrain(), Foam::MULES::correct(), Foam::fvm::ddt(), Foam::dev(), Foam::fvc::div(), Foam::fvm::div(), fvConstraints(), fvModels(), Foam::constant::universal::G, Foam::fvc::grad(), Foam::fvm::laplacian(), Foam::mag(), dictionary::New(), nut, Foam::R(), tmp< T >::ref(), rho, Foam::solve(), fvModels::source(), Foam::fvm::Sp(), Foam::sqr(), Foam::sqrt(), Foam::fvm::SuSp(), Foam::twoSymm(), Foam::typedName(), and U.

|
delete |
Disallow default bitwise assignment.
|
protected |
Definition at line 93 of file RNGkEpsilon.H.
Referenced by RNGkEpsilon< BasicMomentumTransportModel >::omega().
|
protected |
Definition at line 94 of file RNGkEpsilon.H.
|
protected |
Definition at line 95 of file RNGkEpsilon.H.
|
protected |
Definition at line 96 of file RNGkEpsilon.H.
|
protected |
Definition at line 97 of file RNGkEpsilon.H.
|
protected |
Definition at line 98 of file RNGkEpsilon.H.
|
protected |
Definition at line 99 of file RNGkEpsilon.H.
|
protected |
Definition at line 100 of file RNGkEpsilon.H.
|
protected |
Definition at line 105 of file RNGkEpsilon.H.
Referenced by RNGkEpsilon< BasicMomentumTransportModel >::k(), RNGkEpsilon< BasicMomentumTransportModel >::omega(), and RNGkEpsilon< BasicMomentumTransportModel >::RNGkEpsilon().
|
protected |
Definition at line 106 of file RNGkEpsilon.H.
Referenced by RNGkEpsilon< BasicMomentumTransportModel >::epsilon(), and RNGkEpsilon< BasicMomentumTransportModel >::omega().