mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: DPMFoam - extended RAS model selection. See #743
This commit is contained in:
@ -70,6 +70,12 @@ makeLaminarModel(Stokes);
|
|||||||
#include "kEpsilon.H"
|
#include "kEpsilon.H"
|
||||||
makeRASModel(kEpsilon);
|
makeRASModel(kEpsilon);
|
||||||
|
|
||||||
|
#include "realizableKE.H"
|
||||||
|
makeRASModel(realizableKE);
|
||||||
|
|
||||||
|
#include "kOmegaSST.H"
|
||||||
|
makeRASModel(kOmegaSST);
|
||||||
|
|
||||||
#include "Smagorinsky.H"
|
#include "Smagorinsky.H"
|
||||||
makeLESModel(Smagorinsky);
|
makeLESModel(Smagorinsky);
|
||||||
|
|
||||||
|
|||||||
@ -192,7 +192,7 @@ realizableKE<BasicTurbulenceModel>::realizableKE
|
|||||||
(
|
(
|
||||||
IOobject
|
IOobject
|
||||||
(
|
(
|
||||||
"k",
|
IOobject::groupName("k", U.group()),
|
||||||
this->runTime_.timeName(),
|
this->runTime_.timeName(),
|
||||||
this->mesh_,
|
this->mesh_,
|
||||||
IOobject::MUST_READ,
|
IOobject::MUST_READ,
|
||||||
@ -204,7 +204,7 @@ realizableKE<BasicTurbulenceModel>::realizableKE
|
|||||||
(
|
(
|
||||||
IOobject
|
IOobject
|
||||||
(
|
(
|
||||||
"epsilon",
|
IOobject::groupName("epsilon", U.group()),
|
||||||
this->runTime_.timeName(),
|
this->runTime_.timeName(),
|
||||||
this->mesh_,
|
this->mesh_,
|
||||||
IOobject::MUST_READ,
|
IOobject::MUST_READ,
|
||||||
|
|||||||
Reference in New Issue
Block a user