Properties
- Two transport-equation linear-eddy-viscosity turbulence closure model:
- Turbulent kinetic energy, k,
- Turbulent kinetic energy dissipation rate, ϵ.
- Based on:
- Standard model: Launder and Spalding (1974) 36,
- Rapid Distortion Theory compression term: El Tahry (1983)
16.
- Extensively used with known performance,
- Over-prediction of turbulent kinetic energy at stagnation points,
- Requires near-wall treatment.
Model equations
The turbulent kinetic energy equation, k
36]:
DtD(ρk)=∇∙(ρDk∇k)+P−ρϵ
Where:
k
: Turbulent kinetic energy [m2s−2]
Dk
: Effective diffusivity for k [-]
P
: Turbulent kinetic energy production rate [m2s−3]
ϵ
: Turbulent kinetic energy dissipation rate [m2s−3]
The turbulent kinetic energy dissipation rate equation,
ϵ 36]:
DtD(ρϵ)=∇∙(ρDϵ∇ϵ)+kC1ϵ(P+C332k∇∙u)−C2ρkϵ2
Where:
Dϵ
: Effective diffusivity for ϵ [-]
C1
: Model coefficient [-]
C2
: Model coefficient [-]
The turbulent viscosity equation, νt
36]:
νt=Cμϵk2
Where:
Cμ
: Model coefficient for the turbulent viscosity [-]
νt
: Turbulent viscosity [m2s−1]
OpenFOAM implementation
Equations
The turbulent kinetic energy dissipation rate, ϵ:
∂t∂(αρϵ)+∇∙(αρuϵ)−∇2(αρDϵϵ)=C1αρGkϵ−((32C1−C3,RDT)αρ∇∙uϵ)−(C2αρkϵϵ)+Sϵ+SfvOptions
Where:
α
: Phase fraction of the given phase [-]
ρ
: Density of the fluid [kgm−3]
G
: Turbulent kinetic energy production rate due to the anisotropic part of the Reynolds-stress tensor [m2s−3]
Dϵ
: Effective diffusivity for ϵ [-]
C1
: Model coefficient [s]
C2
: Model coefficient [-]
C3,RDT
: Rapid-distortion theory compression term coefficient [-]
Sϵ
: Internal source term for ϵ
SfvOptions
: Source terms introduced by fvOptions dictionary for ϵ
The turbulent kinetic energy equation, k:
∂t∂(αρk)+∇∙(αρuk)−∇2(αρDkk)=αρG−(32αρ∇∙uk)−(αρkϵk)+Sk+SfvOptions
Where:
Sk
: Internal source term for k
SfvOptions
: Source terms introduced by fvOptions dictionary for k
Note that:
- buoyancy contributions are not included,
- the coefficient C3 is not the same as C3,RDT.
Default model coefficients
The model coefficients are 36;16]:
Cμ=0.09;C1=1.44;C2=1.92;C3,RDT=0.0;σk=1.0;σϵ=1.3
Initial conditions
For isotropic turbulence, the turbulent kinetic energy can be estimated by:
k=23(I∣uref∣)2
Where:
I
: Turbulence intensity [%]
uref
: A reference flow speed [ms−1]
For isotropic turbulence, the turbulence dissipation rate can be estimated by:
ϵ=LCμ0.75k1.5
Where:
Cμ
: A model constant equal to 0.09 by default [-]
L
: A reference length scale [m]
Boundary conditions
Inlet:
- fixedValue
- turbulentMixingLengthDissipationRateInlet
Outlet:
Walls:
- kLowReWallFunction
- kqRWallFunction
- epsilonWallFunction
Usage
The model can be enabled by using constant/turbulenceProperties
dictionary:
RAS
{
// Mandatory entries
RASModel kEpsilon;
// Optional entries
turbulence on;
printCoeffs on;
// Optional model coefficients
Cmu 0.09;
C1 1.44;
C2 1.92;
C3 0.0;
sigmak 1.0;
sigmaEps 1.3;
}
Source code:
References:
- Standard model: Launder and Spalding (1974) 36
- Rapid Distortion Theory compression term: El Tahry (1983)
16