Public Member Functions | |
TypeName ("DATurbulenceModel") | |
declareRunTimeSelectionTable (autoPtr, DATurbulenceModel, dictionary,(const word modelType, const fvMesh &mesh, const DAOption &daOption),(modelType, mesh, daOption)) | |
DATurbulenceModel (const word modelType, const fvMesh &mesh, const DAOption &daOption) | |
virtual | ~DATurbulenceModel () |
void | correctWallDist () |
update wall distance for d_. Note: y_ will be automatically updated in mesh_ object More... | |
void | correctAlphat () |
update alphat More... | |
virtual void | correctNut ()=0 |
update nut based on other turbulence variables and update the BCs More... | |
virtual void | correctModelStates (wordList &modelStates) const =0 |
update the turbulence state for DAStateInfo::regStates_ More... | |
virtual void | correctBoundaryConditions ()=0 |
update turbulence variable boundary values More... | |
virtual void | updateIntermediateVariables ()=0 |
update any intermediate variables that are dependent on state variables and are used in calcResiduals More... | |
virtual void | correctStateResidualModelCon (List< List< word >> &stateCon) const =0 |
update the original variable connectivity for the adjoint state residuals in stateCon More... | |
virtual void | addModelResidualCon (HashTable< List< List< word >>> &allCon) const =0 |
add the model residual connectivity to stateCon More... | |
virtual void | calcResiduals (const dictionary &options)=0 |
compute the turbulence residuals More... | |
virtual void | correct ()=0 |
solve the residual equations and update the state More... | |
virtual void | getTurbProdTerm (scalarList &prodTerm) const |
return the value of the production term from the Spalart Allmaras model More... | |
tmp< volSymmTensorField > | devRhoReff () const |
dev terms More... | |
tmp< fvVectorMatrix > | divDevRhoReff (volVectorField &U) |
divDev terms More... | |
tmp< fvVectorMatrix > | divDevReff (volVectorField &U) |
divDev terms More... | |
tmp< volScalarField > | nuEff () const |
return effective viscosity More... | |
tmp< volScalarField > | getNut () |
get the nut field More... | |
tmp< volScalarField > | alphaEff () |
return effective thermal diffusivity More... | |
tmp< volScalarField > | nu () const |
get the nu field More... | |
tmp< volScalarField > | getAlpha () const |
get alpha field More... | |
tmp< volScalarField > | getRho () |
get the density field More... | |
tmp< volScalarField > | getPhase () |
get the phase field More... | |
scalar | getPrt () |
get the turbulent Prandtl number More... | |
tmp< Foam::volScalarField > | getMu () const |
get mu More... | |
bool | writeData (Ostream &os) const |
this is a virtual function for regIOobject More... | |
void | printYPlus () const |
print the min max and mean yPlus to screen More... | |
label | isPrintTime (const Time &runTime, const label printInterval) const |
virtual void | invTranProdNuTildaEqn (const volScalarField &mySource, volScalarField &pseudoNuTilda) |
Inverse transpose product, M_nuTilda^(-T) More... | |
virtual void | constructPseudoNuTildaEqn () |
virtual void | rhsSolvePseudoNuTildaEqn (const volScalarField &nuTildaSource) |
virtual void | calcLduResidualTurb (volScalarField &nuTildaRes) |
calculate the turbulence residual using LDU matrix More... | |
Static Public Member Functions | |
static autoPtr< DATurbulenceModel > | New (const word modelType, const fvMesh &mesh, const DAOption &daOption) |
Protected Attributes | |
const fvMesh & | mesh_ |
fvMesh More... | |
const DAOption & | daOption_ |
DAOption object. More... | |
const dictionary & | allOptions_ |
all DAFoam options More... | |
volScalarField & | nut_ |
turbulence viscosity More... | |
volVectorField & | U_ |
velocity More... | |
surfaceScalarField & | phi_ |
face flux More... | |
volScalarField | phase_ |
phase field More... | |
surfaceScalarField & | phaseRhoPhi_ |
phase*phi*density field More... | |
IOdictionary | turbDict_ |
turbulence model property dict More... | |
dictionary | coeffDict_ |
turbulence model parameters dict More... | |
dimensionedScalar | kMin_ |
Lower limit of k. More... | |
dimensionedScalar | epsilonMin_ |
Lower limit of epsilon. More... | |
dimensionedScalar | omegaMin_ |
Lower limit for omega. More... | |
dimensionedScalar | nuTildaMin_ |
Lower limit for nuTilda. More... | |
scalar | Pr_ |
Prandtl number. More... | |
scalar | Prt_ = -9999.0 |
turbulent Prandtl number More... | |
Definition at line 61 of file DATurbulenceModel.H.
DATurbulenceModel | ( | const word | modelType, |
const fvMesh & | mesh, | ||
const DAOption & | daOption | ||
) |
Definition at line 22 of file DATurbulenceModel.C.
References mesh, DATurbulenceModel::mesh_, DATurbulenceModel::Pr_, and DATurbulenceModel::Prt_.
|
inlinevirtual |
Definition at line 178 of file DATurbulenceModel.H.
TypeName | ( | "DATurbulenceModel" | ) |
declareRunTimeSelectionTable | ( | autoPtr | , |
DATurbulenceModel | , | ||
dictionary | , | ||
(const word modelType, const fvMesh &mesh, const DAOption &daOption) | , | ||
(modelType, mesh, daOption) | |||
) |
|
static |
Definition at line 164 of file DATurbulenceModel.C.
References daOption(), and mesh.
void correctWallDist | ( | ) |
update wall distance for d_. Note: y_ will be automatically updated in mesh_ object
Definition at line 358 of file DATurbulenceModel.C.
References DATurbulenceModel::correctBoundaryConditions().
void correctAlphat | ( | ) |
update alphat
Definition at line 206 of file DATurbulenceModel.C.
References alphat, DATurbulenceModel::mesh_, DATurbulenceModel::nut_, Prt, and DATurbulenceModel::Prt_.
Referenced by DASpalartAllmaras::correctNut(), DAkEpsilon::correctNut(), DASpalartAllmarasFv3::correctNut(), DAkOmega::correctNut(), DASpalartAllmarasFv3FieldInversion::correctNut(), DAkOmegaFieldInversionOmega::correctNut(), DAkOmegaSST::correctNut(), DAkOmegaSSTFieldInversion::correctNut(), DAkOmegaSSTFIML::correctNut(), and DAkOmegaSSTLM::correctNut().
|
pure virtual |
update nut based on other turbulence variables and update the BCs
Implemented in DAkOmegaSSTLM, DAkOmegaSSTFIML, DAkOmegaSSTFieldInversion, DAkOmegaSST, DAkOmegaFieldInversionOmega, DASpalartAllmarasFv3FieldInversion, DAkOmega, DASpalartAllmarasFv3, DAkEpsilon, DASpalartAllmaras, and DADummyTurbulenceModel.
|
pure virtual |
update the turbulence state for DAStateInfo::regStates_
Implemented in DAkOmegaSSTLM, DAkOmegaSSTFIML, DAkOmegaSSTFieldInversion, DAkOmegaSST, DAkOmegaFieldInversionOmega, DASpalartAllmarasFv3FieldInversion, DAkOmega, DASpalartAllmarasFv3, DAkEpsilon, DASpalartAllmaras, and DADummyTurbulenceModel.
Referenced by DAModel::correctModelStates().
|
pure virtual |
update turbulence variable boundary values
Implemented in DAkOmegaSSTLM, DAkOmegaSSTFIML, DAkOmegaSSTFieldInversion, DAkOmegaSST, DAkOmegaFieldInversionOmega, DASpalartAllmarasFv3FieldInversion, DAkOmega, DASpalartAllmarasFv3, DAkEpsilon, DASpalartAllmaras, and DADummyTurbulenceModel.
Referenced by DAModel::correctBoundaryConditions(), and DATurbulenceModel::correctWallDist().
|
pure virtual |
update any intermediate variables that are dependent on state variables and are used in calcResiduals
Implemented in DAkOmegaSSTLM, DAkOmegaSSTFIML, DAkOmegaSSTFieldInversion, DAkOmegaSST, DAkOmegaFieldInversionOmega, DASpalartAllmarasFv3FieldInversion, DAkOmega, DASpalartAllmarasFv3, DAkEpsilon, DASpalartAllmaras, and DADummyTurbulenceModel.
Referenced by DAModel::updateIntermediateVariables().
|
pure virtual |
update the original variable connectivity for the adjoint state residuals in stateCon
Implemented in DAkOmegaSSTLM, DAkOmegaSSTFIML, DAkOmegaSSTFieldInversion, DAkOmegaSST, DAkOmegaFieldInversionOmega, DASpalartAllmarasFv3FieldInversion, DAkOmega, DASpalartAllmarasFv3, DAkEpsilon, DASpalartAllmaras, and DADummyTurbulenceModel.
Referenced by DAModel::correctStateResidualModelCon().
|
pure virtual |
add the model residual connectivity to stateCon
Implemented in DAkOmegaSSTLM, DAkOmegaSSTFIML, DAkOmegaSSTFieldInversion, DAkOmegaSST, DAkOmegaFieldInversionOmega, DASpalartAllmarasFv3FieldInversion, DAkOmega, DASpalartAllmarasFv3, DAkEpsilon, DASpalartAllmaras, and DADummyTurbulenceModel.
Referenced by DAModel::addModelResidualCon().
|
pure virtual |
compute the turbulence residuals
Implemented in DAkOmegaSSTLM, DAkOmegaSSTFIML, DAkOmegaSSTFieldInversion, DAkOmegaSST, DAkOmegaFieldInversionOmega, DASpalartAllmarasFv3FieldInversion, DAkOmega, DASpalartAllmarasFv3, DAkEpsilon, DASpalartAllmaras, and DADummyTurbulenceModel.
Referenced by DAModel::calcResiduals().
|
pure virtual |
solve the residual equations and update the state
Implemented in DAkOmegaSSTLM, DAkOmegaSSTFIML, DAkOmegaSSTFieldInversion, DAkOmegaSST, DAkOmegaFieldInversionOmega, DASpalartAllmarasFv3FieldInversion, DAkOmega, DASpalartAllmarasFv3, DAkEpsilon, DASpalartAllmaras, and DADummyTurbulenceModel.
|
virtual |
return the value of the production term from the Spalart Allmaras model
Reimplemented in DASpalartAllmarasFv3FieldInversion.
Definition at line 483 of file DATurbulenceModel.C.
Referenced by DAModel::getTurbProdTerm().
tmp< volSymmTensorField > devRhoReff | ( | ) | const |
dev terms
Definition at line 306 of file DATurbulenceModel.C.
References DATurbulenceModel::mesh_, DATurbulenceModel::nuEff(), DATurbulenceModel::phase_, and DATurbulenceModel::U_.
Referenced by DAObjFuncMoment::calcObjFunc(), DAObjFuncPower::calcObjFunc(), DAObjFuncFieldInversion::calcObjFunc(), DAObjFuncForce::calcObjFunc(), DAResidualTurboFoam::calcResiduals(), DASolver::getAcousticDataInternal(), and DASolver::getForcesInternal().
tmp< fvVectorMatrix > divDevRhoReff | ( | volVectorField & | U | ) |
divDev terms
Definition at line 324 of file DATurbulenceModel.C.
References divScheme, DATurbulenceModel::nuEff(), DATurbulenceModel::phase_, rho, T, and U.
Referenced by DAResidualRhoSimpleCFoam::calcResiduals(), DAResidualTurboFoam::calcResiduals(), DAResidualRhoSimpleFoam::calcResiduals(), and DATurbulenceModel::divDevReff().
tmp< fvVectorMatrix > divDevReff | ( | volVectorField & | U | ) |
divDev terms
Definition at line 347 of file DATurbulenceModel.C.
References DATurbulenceModel::divDevRhoReff(), and U.
Referenced by DAResidualPimpleFoam::calcResiduals(), DAResidualPisoFoam::calcResiduals(), DAResidualSimpleFoam::calcResiduals(), and DAResidualSimpleTFoam::calcResiduals().
tmp< volScalarField > nuEff | ( | ) | const |
return effective viscosity
Definition at line 223 of file DATurbulenceModel.C.
References DATurbulenceModel::nu(), and DATurbulenceModel::nut_.
Referenced by DATurbulenceModel::devRhoReff(), DATurbulenceModel::divDevRhoReff(), and DATurbulenceModel::printYPlus().
|
inline |
get the nut field
Definition at line 230 of file DATurbulenceModel.H.
References DATurbulenceModel::nut_.
Referenced by DAResidualSimpleTFoam::updateIntermediateVariables().
tmp< volScalarField > alphaEff | ( | ) |
return effective thermal diffusivity
Definition at line 236 of file DATurbulenceModel.C.
References alphat, DATurbulenceModel::getAlpha(), and DATurbulenceModel::mesh_.
Referenced by DAObjFuncWallHeatFlux::calcObjFunc(), DASolver::getThermal(), and DASolver::setThermal().
tmp< volScalarField > nu | ( | ) | const |
get the nu field
Definition at line 262 of file DATurbulenceModel.C.
Referenced by DAkOmegaSSTFIML::calcBetaField(), DAResidualSimpleTFoam::calcResiduals(), DAkOmegaSSTLM::calcResiduals(), DASpalartAllmarasFv3::chi(), DASpalartAllmaras::chi(), DASpalartAllmarasFv3FieldInversion::chi(), DAkEpsilon::DepsilonEff(), DAkOmegaSSTLM::DgammaIntEff(), DAkOmegaFieldInversionOmega::DkEff(), DAkOmega::DkEff(), DAkEpsilon::DkEff(), DAkOmegaSST::DkEff(), DAkOmegaSSTFieldInversion::DkEff(), DAkOmegaSSTFIML::DkEff(), DAkOmegaSSTLM::DkEff(), DASpalartAllmaras::DnuTildaEff(), DASpalartAllmarasFv3::DnuTildaEff(), DASpalartAllmarasFv3FieldInversion::DnuTildaEff(), DAkOmega::DomegaEff(), DAkOmegaFieldInversionOmega::DomegaEff(), DAkOmegaSST::DomegaEff(), DAkOmegaSSTFieldInversion::DomegaEff(), DAkOmegaSSTFIML::DomegaEff(), DAkOmegaSSTLM::DomegaEff(), DAkOmegaSSTLM::DReThetatEff(), DAkOmegaSST::F1(), DAkOmegaSSTFieldInversion::F1(), DAkOmegaSSTFIML::F1(), DAkOmegaSSTLM::F1(), DAkOmegaSSTLM::F1SST(), DAkOmegaSST::F2(), DAkOmegaSSTFieldInversion::F2(), DAkOmegaSSTFIML::F2(), DAkOmegaSSTLM::F2(), DAkOmegaSST::F3(), DAkOmegaSSTFieldInversion::F3(), DAkOmegaSSTLM::F3(), DAkOmegaSSTFIML::F3(), DAkOmegaSSTLM::Flength(), DAkOmegaSSTLM::Fthetat(), DATurbulenceModel::getAlpha(), DATurbulenceModel::nuEff(), DATurbulenceModel::printYPlus(), and DAkOmegaSSTLM::ReThetat0().
tmp< volScalarField > getAlpha | ( | ) | const |
get alpha field
Definition at line 280 of file DATurbulenceModel.C.
References DATurbulenceModel::nu(), and DATurbulenceModel::Pr_.
Referenced by DATurbulenceModel::alphaEff().
|
inline |
get the density field
Definition at line 245 of file DATurbulenceModel.H.
|
inline |
get the phase field
Definition at line 251 of file DATurbulenceModel.H.
References DATurbulenceModel::phase_.
|
inline |
get the turbulent Prandtl number
Definition at line 257 of file DATurbulenceModel.H.
References DATurbulenceModel::Prt_.
tmp< Foam::volScalarField > getMu | ( | ) | const |
bool writeData | ( | Ostream & | os | ) | const |
this is a virtual function for regIOobject
Definition at line 200 of file DATurbulenceModel.C.
void printYPlus | ( | ) | const |
print the min max and mean yPlus to screen
Definition at line 385 of file DATurbulenceModel.C.
References forAll(), DATurbulenceModel::mesh_, DATurbulenceModel::nu(), DATurbulenceModel::nuEff(), DATurbulenceModel::nut_, and DATurbulenceModel::U_.
label isPrintTime | ( | const Time & | runTime, |
const label | printInterval | ||
) | const |
Definition at line 464 of file DATurbulenceModel.C.
References runTime.
Referenced by DASpalartAllmaras::calcResiduals(), DAkEpsilon::calcResiduals(), DASpalartAllmarasFv3::calcResiduals(), DAkOmega::calcResiduals(), DASpalartAllmarasFv3FieldInversion::calcResiduals(), DAkOmegaFieldInversionOmega::calcResiduals(), DAkOmegaSST::calcResiduals(), DAkOmegaSSTFieldInversion::calcResiduals(), DAkOmegaSSTFIML::calcResiduals(), and DAkOmegaSSTLM::calcResiduals().
|
virtual |
Inverse transpose product, M_nuTilda^(-T)
Reimplemented in DASpalartAllmarasFv3.
Definition at line 495 of file DATurbulenceModel.C.
|
virtual |
Reimplemented in DASpalartAllmarasFv3.
Definition at line 521 of file DATurbulenceModel.C.
|
virtual |
Reimplemented in DASpalartAllmarasFv3.
Definition at line 533 of file DATurbulenceModel.C.
|
virtual |
calculate the turbulence residual using LDU matrix
Reimplemented in DASpalartAllmarasFv3.
Definition at line 509 of file DATurbulenceModel.C.
|
protected |
fvMesh
Definition at line 74 of file DATurbulenceModel.H.
Referenced by DASpalartAllmaras::addModelResidualCon(), DAkEpsilon::addModelResidualCon(), DASpalartAllmarasFv3::addModelResidualCon(), DAkOmega::addModelResidualCon(), DASpalartAllmarasFv3FieldInversion::addModelResidualCon(), DAkOmegaFieldInversionOmega::addModelResidualCon(), DAkOmegaSST::addModelResidualCon(), DAkOmegaSSTFieldInversion::addModelResidualCon(), DAkOmegaSSTFIML::addModelResidualCon(), DAkOmegaSSTLM::addModelResidualCon(), DATurbulenceModel::alphaEff(), DAkOmegaSSTFIML::calcBetaField(), DASpalartAllmaras::calcResiduals(), DAkEpsilon::calcResiduals(), DASpalartAllmarasFv3::calcResiduals(), DAkOmega::calcResiduals(), DASpalartAllmarasFv3FieldInversion::calcResiduals(), DAkOmegaFieldInversionOmega::calcResiduals(), DAkOmegaSST::calcResiduals(), DAkOmegaSSTFieldInversion::calcResiduals(), DAkOmegaSSTFIML::calcResiduals(), DAkOmegaSSTLM::calcResiduals(), DATurbulenceModel::correctAlphat(), DAkOmegaSST::correctNut(), DAkOmegaSSTFieldInversion::correctNut(), DAkOmegaSSTFIML::correctNut(), DAkOmegaSSTLM::correctNut(), DATurbulenceModel::DATurbulenceModel(), DATurbulenceModel::devRhoReff(), DAkOmegaSSTLM::Flength(), DATurbulenceModel::printYPlus(), DAkOmegaSSTLM::ReThetac(), DAkOmegaSSTLM::ReThetat0(), DAkEpsilon::saveEpsilonNearWall(), DAkOmega::saveOmegaNearWall(), DAkOmegaFieldInversionOmega::saveOmegaNearWall(), DAkOmegaSST::saveOmegaNearWall(), DAkOmegaSSTFieldInversion::saveOmegaNearWall(), DAkOmegaSSTFIML::saveOmegaNearWall(), DAkOmegaSSTLM::saveOmegaNearWall(), DAkEpsilon::setEpsilonNearWall(), DAkOmega::setOmegaNearWall(), DAkOmegaFieldInversionOmega::setOmegaNearWall(), DAkOmegaSST::setOmegaNearWall(), DAkOmegaSSTFieldInversion::setOmegaNearWall(), DAkOmegaSSTFIML::setOmegaNearWall(), and DAkOmegaSSTLM::setOmegaNearWall().
|
protected |
DAOption object.
Definition at line 77 of file DATurbulenceModel.H.
|
protected |
all DAFoam options
Definition at line 80 of file DATurbulenceModel.H.
Referenced by DASpalartAllmaras::calcResiduals(), DAkEpsilon::calcResiduals(), DASpalartAllmarasFv3::calcResiduals(), DAkOmega::calcResiduals(), DASpalartAllmarasFv3FieldInversion::calcResiduals(), DAkOmegaFieldInversionOmega::calcResiduals(), DAkOmegaSST::calcResiduals(), DAkOmegaSSTFieldInversion::calcResiduals(), DAkOmegaSSTFIML::calcResiduals(), and DAkOmegaSSTLM::calcResiduals().
|
protected |
turbulence viscosity
Definition at line 83 of file DATurbulenceModel.H.
Referenced by DAkOmegaSSTFIML::calcBetaField(), DAkEpsilon::calcResiduals(), DAkOmega::calcResiduals(), DAkOmegaFieldInversionOmega::calcResiduals(), DAkOmegaSST::calcResiduals(), DAkOmegaSSTFieldInversion::calcResiduals(), DAkOmegaSSTFIML::calcResiduals(), DAkOmegaSSTLM::calcResiduals(), DATurbulenceModel::correctAlphat(), DASpalartAllmaras::correctNut(), DAkEpsilon::correctNut(), DASpalartAllmarasFv3::correctNut(), DAkOmega::correctNut(), DASpalartAllmarasFv3FieldInversion::correctNut(), DAkOmegaFieldInversionOmega::correctNut(), DAkOmegaSST::correctNut(), DAkOmegaSSTFieldInversion::correctNut(), DAkOmegaSSTFIML::correctNut(), DAkOmegaSSTLM::correctNut(), DAkEpsilon::DepsilonEff(), DAkOmegaSSTLM::DgammaIntEff(), DAkOmegaFieldInversionOmega::DkEff(), DAkOmega::DkEff(), DAkEpsilon::DkEff(), DAkOmegaSST::DkEff(), DAkOmegaSSTFieldInversion::DkEff(), DAkOmegaSSTFIML::DkEff(), DAkOmegaSSTLM::DkEff(), DAkOmegaFieldInversionOmega::DomegaEff(), DAkOmega::DomegaEff(), DAkOmegaSST::DomegaEff(), DAkOmegaSSTFieldInversion::DomegaEff(), DAkOmegaSSTFIML::DomegaEff(), DAkOmegaSSTLM::DomegaEff(), DAkOmegaSSTLM::DReThetatEff(), DATurbulenceModel::getMu(), DATurbulenceModel::getNut(), DATurbulenceModel::nuEff(), and DATurbulenceModel::printYPlus().
|
protected |
velocity
Definition at line 86 of file DATurbulenceModel.H.
Referenced by DAkOmegaSSTFIML::calcBetaField(), DASpalartAllmarasFv3::calcLduResidualTurb(), DAkEpsilon::calcResiduals(), DASpalartAllmarasFv3::calcResiduals(), DAkOmega::calcResiduals(), DASpalartAllmarasFv3FieldInversion::calcResiduals(), DAkOmegaFieldInversionOmega::calcResiduals(), DAkOmegaSST::calcResiduals(), DAkOmegaSSTFieldInversion::calcResiduals(), DAkOmegaSSTFIML::calcResiduals(), DAkOmegaSSTLM::calcResiduals(), DASpalartAllmarasFv3::constructPseudoNuTildaEqn(), DATurbulenceModel::devRhoReff(), DAkOmegaSSTLM::Flength(), DAkOmegaSSTLM::Fonset(), DAkOmegaSSTLM::Fthetat(), DASpalartAllmarasFv3FieldInversion::getTurbProdTerm(), DATurbulenceModel::printYPlus(), DAkOmegaSSTLM::ReThetac(), DAkOmegaSSTLM::ReThetat0(), and DASpalartAllmaras::Stilda().
|
protected |
face flux
Definition at line 89 of file DATurbulenceModel.H.
Referenced by DASpalartAllmarasFv3::calcLduResidualTurb(), DAkEpsilon::calcResiduals(), DAkOmega::calcResiduals(), DAkOmegaFieldInversionOmega::calcResiduals(), DAkOmegaSST::calcResiduals(), DAkOmegaSSTFieldInversion::calcResiduals(), DAkOmegaSSTFIML::calcResiduals(), DAkOmegaSSTLM::calcResiduals(), and DASpalartAllmarasFv3::constructPseudoNuTildaEqn().
|
protected |
phase field
Definition at line 92 of file DATurbulenceModel.H.
Referenced by DASpalartAllmaras::calcResiduals(), DAkEpsilon::calcResiduals(), DASpalartAllmarasFv3::calcResiduals(), DAkOmega::calcResiduals(), DASpalartAllmarasFv3FieldInversion::calcResiduals(), DAkOmegaFieldInversionOmega::calcResiduals(), DAkOmegaSST::calcResiduals(), DAkOmegaSSTFieldInversion::calcResiduals(), DAkOmegaSSTFIML::calcResiduals(), DAkOmegaSSTLM::calcResiduals(), DATurbulenceModel::devRhoReff(), DATurbulenceModel::divDevRhoReff(), DATurbulenceModel::getPhase(), and DASpalartAllmarasFv3FieldInversion::getTurbProdTerm().
|
protected |
phase*phi*density field
Definition at line 95 of file DATurbulenceModel.H.
Referenced by DASpalartAllmaras::calcResiduals(), DAkEpsilon::calcResiduals(), DASpalartAllmarasFv3::calcResiduals(), DAkOmega::calcResiduals(), DASpalartAllmarasFv3FieldInversion::calcResiduals(), DAkOmegaFieldInversionOmega::calcResiduals(), DAkOmegaSST::calcResiduals(), DAkOmegaSSTFieldInversion::calcResiduals(), DAkOmegaSSTFIML::calcResiduals(), and DAkOmegaSSTLM::calcResiduals().
|
protected |
turbulence model property dict
Definition at line 124 of file DATurbulenceModel.H.
|
protected |
turbulence model parameters dict
Definition at line 127 of file DATurbulenceModel.H.
|
protected |
Lower limit of k.
Definition at line 130 of file DATurbulenceModel.H.
|
protected |
Lower limit of epsilon.
Definition at line 133 of file DATurbulenceModel.H.
|
protected |
Lower limit for omega.
Definition at line 136 of file DATurbulenceModel.H.
|
protected |
Lower limit for nuTilda.
Definition at line 139 of file DATurbulenceModel.H.
|
protected |
Prandtl number.
Definition at line 142 of file DATurbulenceModel.H.
Referenced by DATurbulenceModel::DATurbulenceModel(), and DATurbulenceModel::getAlpha().
|
protected |
turbulent Prandtl number
Definition at line 145 of file DATurbulenceModel.H.
Referenced by DATurbulenceModel::correctAlphat(), DATurbulenceModel::DATurbulenceModel(), and DATurbulenceModel::getPrt().