Base class for all incompressible flow LES SGS models. More...
#include <incompressibleLESModels/LESModel.H>
Base class for all incompressible flow LES SGS models.
This class defines the basic interface for an incompressible flow SGS model, and encapsulates data of value to all possible models. In particular this includes references to all the dependent fields (U, phi), the physical viscosity nu, and the LESProperties dictionary, which contains the model selection and model coefficients.
Definition at line 71 of file LESModel.H.
Public Member Functions | |
TypeName ("LESModel") | |
Runtime type information. | |
declareRunTimeSelectionTable (autoPtr, LESModel, dictionary,(const volVectorField &U, const surfaceScalarField &phi, transportModel &lamTransportModel),(U, phi, lamTransportModel)) | |
LESModel (const word &type, const volVectorField &U, const surfaceScalarField &phi, transportModel &lamTransportModel) | |
Construct from components. | |
virtual | ~LESModel () |
Destructor. | |
const dictionary & | coeffDict () const |
Const access to the coefficients dictionary,. | |
virtual const volScalarField & | delta () const |
Access function to filter width. | |
const dimensionedScalar & | k0 () const |
Return the value of k0 which k is not allowed to be less than. | |
dimensionedScalar & | k0 () |
Allow k0 to be changed. | |
virtual tmp< volScalarField > | k () const =0 |
Return the SGS turbulent kinetic energy. | |
virtual tmp< volScalarField > | epsilon () const =0 |
Return the SGS turbulent dissipation. | |
virtual tmp< volScalarField > | nuSgs () const =0 |
Return the SGS viscosity. | |
virtual tmp< volScalarField > | nuEff () const |
Return the effective viscosity. | |
virtual tmp< volSymmTensorField > | B () const =0 |
Return the sub-grid stress tensor. | |
virtual tmp< volSymmTensorField > | devBeff () const =0 |
Return the deviatoric part of the effective sub-grid. | |
virtual tmp< fvVectorMatrix > | divDevBeff (volVectorField &U) const =0 |
Returns div(dev(Beff)). | |
virtual tmp< volScalarField > | nut () const |
Return the turbulence viscosity. | |
virtual tmp< volSymmTensorField > | R () const |
Return the Reynolds stress tensor. | |
virtual tmp< volSymmTensorField > | devReff () const |
Return the effective stress tensor including the laminar stress. | |
virtual tmp< fvVectorMatrix > | divDevReff (volVectorField &U) const |
Return the source term for the momentum equation. | |
void | correct () |
Correct Eddy-Viscosity and related properties. | |
virtual void | correct (const tmp< volTensorField > &gradU) |
Correct Eddy-Viscosity and related properties. | |
virtual bool | read ()=0 |
Read LESProperties dictionary. | |
![]() | |
TypeName ("turbulenceModel") | |
Runtime type information. | |
declareRunTimeNewSelectionTable (autoPtr, turbulenceModel, turbulenceModel,(const volVectorField &U, const surfaceScalarField &phi, transportModel &lamTransportModel),(U, phi, lamTransportModel)) | |
turbulenceModel (const volVectorField &U, const surfaceScalarField &phi, transportModel &lamTransportModel) | |
Construct from components. | |
virtual | ~turbulenceModel () |
Destructor. | |
const volVectorField & | U () const |
Access function to velocity field. | |
const surfaceScalarField & | phi () const |
Access function to flux field. | |
transportModel & | transport () const |
Access function to incompressible transport model. | |
const volScalarField & | nu () const |
Return the laminar viscosity. | |
virtual tmp< fvVectorMatrix > | divDevReff (volVectorField &U) const =0 |
Return the source term for the momentum equation. | |
![]() | |
TypeName ("dictionary") | |
IOdictionary (const IOobject &) | |
Construct given an IOobject. | |
IOdictionary (const IOobject &, const dictionary &) | |
Construct given an IOobject and dictionary. | |
virtual | ~IOdictionary () |
const word & | name () const |
Name function is needed to disambiguate those inherited. | |
bool | readData (Istream &) |
ReadData function required for regIOobject read operation. | |
bool | writeData (Ostream &) const |
WriteData function required for regIOobject write operation. | |
virtual bool | write () const |
Write using setting from DB. | |
void | operator= (const IOdictionary &) |
Assignment of other IOdictionary's entries to this IOdictionary. | |
![]() | |
TypeName ("regIOobject") | |
Runtime type information. | |
regIOobject (const IOobject &, const bool isTime=false) | |
Construct from IOobject. Optional flag for if IOobject is the. | |
regIOobject (const regIOobject &) | |
Construct as copy. | |
regIOobject (const regIOobject &, bool registerCopy) | |
Construct as copy, and transferring registry registration to copy. | |
virtual | ~regIOobject () |
bool | checkIn () |
Add object to registry. | |
bool | checkOut () |
Remove object from registry. | |
bool | ownedByRegistry () const |
Is this object owned by the registry? | |
void | store () |
Transfer ownership of this object to its registry. | |
void | release () |
Release ownership of this object from its registry. | |
label | eventNo () const |
Event number at last update. | |
label & | eventNo () |
Event number at last update. | |
bool | upToDate (const word &) const |
Am I uptodate with respect to other regIOobjects. | |
bool | upToDate (const word &, const word &) const |
bool | upToDate (const word &, const word &, const word &) const |
bool | upToDate (const word &, const word &, const word &, const word &) const |
void | setUpToDate () |
Flag me as up to date. | |
virtual void | rename (const word &newName) |
Rename. | |
Istream & | readStream (const word &) |
Return Istream and check object type against that given. | |
void | close () |
Close Istream. | |
virtual bool | modified () const |
Return true if the object's file has been modified. | |
virtual bool | readIfModified () |
Read object if modified. | |
virtual bool | writeObject (IOstream::streamFormat, IOstream::versionNumber, IOstream::compressionType) const |
Write using given format, version and compression. | |
void | operator= (const IOobject &) |
![]() | |
TypeName ("IOobject") | |
Runtime type information. | |
IOobject (const word &name, const fileName &instance, const objectRegistry ®istry, readOption r=NO_READ, writeOption w=NO_WRITE, bool registerObject=true) | |
Construct from name, instance, registry, io options. | |
IOobject (const word &name, const fileName &instance, const fileName &local, const objectRegistry ®istry, readOption r=NO_READ, writeOption w=NO_WRITE, bool registerObject=true) | |
Construct from name, instance, local, registry, io options. | |
IOobject (const fileName &path, const objectRegistry ®istry, readOption r=NO_READ, writeOption w=NO_WRITE, bool registerObject=true) | |
Construct from path, registry, io options. | |
Foam::autoPtr< IOobject > | clone () const |
Clone. | |
virtual | ~IOobject () |
const Time & | time () const |
Return time. | |
const objectRegistry & | db () const |
Return the local objectRegistry. | |
const word & | headerClassName () const |
Return name of the class name read from header. | |
string & | note () |
Return non-constant access to the optional note. | |
const string & | note () const |
Return the optional note. | |
bool | registerObject () const |
Register object created from this IOobject with registry if true. | |
readOption | readOpt () const |
readOption & | readOpt () |
writeOption | writeOpt () const |
writeOption & | writeOpt () |
const fileName & | rootPath () const |
const fileName & | caseName () const |
const fileName & | instance () const |
fileName & | instance () |
const fileName & | local () const |
fileName | path () const |
Return complete path. | |
fileName | path (const word &instance, const fileName &local="") const |
Return complete path with alternative instance and local. | |
fileName | objectPath () const |
Return complete path + object name. | |
fileName | filePath () const |
Return complete path + object name if the file exists. | |
bool | readHeader (Istream &) |
Read header. | |
bool | headerOk () |
Read and check header info. | |
bool | writeHeader (Ostream &) const |
Write header. | |
bool | good () const |
bool | bad () const |
InfoProxy< IOobject > | info () const |
Return info proxy. | |
![]() | |
ClassName ("dictionary") | |
dictionary () | |
Construct top-level dictionary null. | |
dictionary (const fileName &name) | |
Construct top-level empty dictionary with given name. | |
dictionary (const fileName &name, const dictionary &parentDict, Istream &) | |
Construct given the entry name, parent dictionary and Istream,. | |
dictionary (Istream &) | |
Construct top-level dictionary from Istream, reading entries. | |
dictionary (const dictionary &parentDict, const dictionary &) | |
Construct as copy given the parent dictionary. | |
dictionary (const dictionary &) | |
Construct top-level dictionary as copy. | |
dictionary (const dictionary *) | |
Construct top-level dictionary as copy from pointer to dictionary. | |
dictionary (const dictionary &parentDict, const Xfer< dictionary > &) | |
Construct by transferring parameter contents given parent dictionary. | |
dictionary (const Xfer< dictionary > &) | |
Construct top-level dictionary by transferring parameter contents. | |
autoPtr< dictionary > | clone () const |
Construct and return clone. | |
~dictionary () | |
const dictionary & | parent () const |
Return the parent dictionary. | |
label | startLineNumber () const |
Return line number of first token in dictionary. | |
label | endLineNumber () const |
Return line number of last token in dictionary. | |
SHA1Digest | digest () const |
Return the SHA1 digest of the dictionary contents. | |
bool | found (const word &, bool recursive=false) const |
Search dictionary for given keyword. | |
const entry * | lookupEntryPtr (const word &, bool recursive, bool patternMatch) const |
Find and return an entry data stream pointer if present. | |
entry * | lookupEntryPtr (const word &, bool recursive, bool patternMatch) |
Find and return an entry data stream pointer for manipulation. | |
const entry & | lookupEntry (const word &, bool recursive, bool patternMatch) const |
Find and return an entry data stream if present otherwise error. | |
ITstream & | lookup (const word &, bool recursive=false, bool patternMatch=true) const |
Find and return an entry data stream. | |
template<class T > | |
T | lookupOrDefault (const word &, const T &, bool recursive=false, bool patternMatch=true) const |
Find and return a T,. | |
template<class T > | |
T | lookupOrAddDefault (const word &, const T &, bool recursive=false, bool patternMatch=true) |
Find and return a T, if not found return the given. | |
template<class T > | |
bool | readIfPresent (const word &, T &, bool recursive=false, bool patternMatch=true) const |
Find an entry if present, and assign to T. | |
bool | isDict (const word &) const |
Check if entry is a sub-dictionary. | |
const dictionary * | subDictPtr (const word &) const |
Find and return a sub-dictionary pointer if present. | |
const dictionary & | subDict (const word &) const |
Find and return a sub-dictionary. | |
dictionary & | subDict (const word &) |
Find and return a sub-dictionary for manipulation. | |
dictionary | subOrEmptyDict (const word &) const |
Find and return a sub-dictionary as a copy, or. | |
wordList | toc () const |
Return the table of contents. | |
List< keyType > | keys (bool patterns=false) const |
Return the list of available keys or patterns. | |
bool | substituteKeyword (const word &keyword) |
Substitute the given keyword prepended by '$' with the. | |
bool | add (entry *, bool mergeEntry=false) |
Add a new entry. | |
void | add (const entry &, bool mergeEntry=false) |
Add an entry. | |
void | add (const keyType &, const word &, bool overwrite=false) |
Add a word entry. | |
void | add (const keyType &, const string &, bool overwrite=false) |
Add a string entry. | |
void | add (const keyType &, const label, bool overwrite=false) |
Add a label entry. | |
void | add (const keyType &, const scalar, bool overwrite=false) |
Add a scalar entry. | |
void | add (const keyType &, const dictionary &, bool mergeEntry=false) |
Add a dictionary entry. | |
template<class T > | |
void | add (const keyType &, const T &, bool overwrite=false) |
Add a T entry. | |
void | set (entry *) |
Assign a new entry, overwrite any existing entry. | |
void | set (const entry &) |
Assign a new entry, overwrite any existing entry. | |
void | set (const keyType &, const dictionary &) |
Assign a dictionary entry, overwrite any existing entry. | |
template<class T > | |
void | set (const keyType &, const T &) |
Assign a T entry, overwrite any existing entry. | |
bool | remove (const word &) |
Remove an entry specified by keyword. | |
bool | changeKeyword (const keyType &oldKeyword, const keyType &newKeyword, bool forceOverwrite=false) |
Change the keyword for an entry,. | |
bool | merge (const dictionary &) |
Merge entries from the given dictionary. | |
void | clear () |
Clear the dictionary. | |
void | transfer (dictionary &) |
Transfer the contents of the argument and annul the argument. | |
Xfer< dictionary > | xfer () |
Transfer contents to the Xfer container. | |
bool | read (Istream &) |
Read dictionary from Istream. | |
void | write (Ostream &, bool subDict=true) const |
ITstream & | operator[] (const word &) const |
Find and return entry. | |
void | operator= (const dictionary &) |
void | operator+= (const dictionary &) |
Include entries from the given dictionary. | |
void | operator|= (const dictionary &) |
Conditionally include entries from the given dictionary. | |
void | operator<<= (const dictionary &) |
Unconditionally include entries from the given dictionary. | |
![]() | |
dictionaryName () | |
Construct dictionaryName null. | |
dictionaryName (const fileName &name) | |
Construct dictionaryName as copy of the given fileName. | |
fileName & | name () |
Return the dictionary name. | |
![]() | |
IDLList () | |
Null construct. | |
IDLList (const entry &a) | |
Construct given initial T. | |
IDLList (Istream &is, const INew &inewt) | |
Construct from Istream using given Istream constructor class. | |
IDLList (Istream &is) | |
Construct from Istream. | |
IDLList (const IDLList< entry > &idll, const CloneArg &cloneArg) | |
Copy constructor with additional argument for clone. | |
![]() | |
ILList () | |
Null construct. | |
ILList (entry *a) | |
Construct given initial T. | |
ILList (Istream &) | |
Construct from Istream. | |
ILList (const ILList< DLListBase, entry > &) | |
Construct as copy. | |
ILList (const ILList< DLListBase, entry > &lst, const CloneArg &cloneArg) | |
Copy constructor with additional argument for clone. | |
ILList (Istream &, const INew &) | |
Construct from Istream using given Istream constructor class. | |
~ILList () | |
bool | eraseHead () |
Remove the head element specified from the list and delete it. | |
bool | erase (entry *p) |
Remove the specified element from the list and delete it. | |
void | transfer (ILList< DLListBase, entry > &) |
Transfer the contents of the argument into this List. | |
void | operator= (const ILList< DLListBase, entry > &) |
![]() | |
UILList () | |
Null construct. | |
UILList (entry *a) | |
Construct given initial T. | |
UILList (const UILList< DLListBase, entry > &) | |
Construct as copy. | |
entry * | first () |
Return the first entry. | |
const entry * | first () const |
Return the first entry. | |
entry * | last () |
Return the last entry. | |
const entry * | last () const |
Return the last entry. | |
entry * | removeHead () |
Remove and return head. | |
entry * | remove (entry *p) |
Remove and return element. | |
entry * | remove (iterator &it) |
Remove and return specified by iterator. | |
void | operator= (const UILList< DLListBase, entry > &) |
bool | operator== (const UILList< DLListBase, entry > &) const |
Equality operation on ULists of the same type. | |
bool | operator!= (const UILList< DLListBase, entry > &) const |
The opposite of the equality operation. Takes linear time. | |
![]() | |
DLListBase () | |
Null construct. | |
DLListBase (link *) | |
Construct given initial entry. | |
~DLListBase () | |
label | size () const |
Return number of elements in list. | |
bool | empty () const |
Return true if the list is empty. | |
void | insert (link *) |
Add at head of list. | |
void | append (link *) |
Add at tail of list. | |
bool | swapUp (link *) |
Swap this element with the one above unless it is at the top. | |
bool | swapDown (link *) |
Swap this element with the one below unless it is at the bottom. | |
link * | remove (link *) |
Remove and return element. | |
link * | replace (link *oldLink, link *newLink) |
Replace oldLink with newLink and return element. | |
link * | replace (iterator &oldIter, link *newLink) |
Replace oldIter with newLink and return element. | |
void | transfer (DLListBase &) |
Transfer the contents of the argument into this List. | |
iterator | begin () |
const iterator & | end () |
const_iterator | cbegin () const |
const const_iterator & | cend () const |
const_iterator | begin () const |
const const_iterator & | end () const |
Static Public Member Functions | |
static autoPtr< LESModel > | New (const volVectorField &U, const surfaceScalarField &phi, transportModel &lamTransportModel) |
Return a reference to the selected LES model. | |
![]() | |
static autoPtr< turbulenceModel > | New (const volVectorField &U, const surfaceScalarField &phi, transportModel &lamTransportModel) |
Return a reference to the selected turbulence model. |
Protected Member Functions | |
virtual void | printCoeffs () |
Print model coefficients. |
Protected Attributes | |
Switch | printCoeffs_ |
dictionary | coeffDict_ |
dimensionedScalar | k0_ |
autoPtr< LESdelta > | delta_ |
![]() | |
const Time & | runTime_ |
const fvMesh & | mesh_ |
const volVectorField & | U_ |
const surfaceScalarField & | phi_ |
transportModel & | transportModel_ |
LESModel | ( | const word & | type, |
const volVectorField & | U, | ||
const surfaceScalarField & | phi, | ||
transportModel & | lamTransportModel | ||
) |
|
inlinevirtual |
Destructor.
Definition at line 152 of file LESModel.H.
|
protectedvirtual |
Print model coefficients.
Definition at line 44 of file LESModel.C.
References Foam::endl(), Foam::Info, and Foam::type().
TypeName | ( | "LESModel" | ) |
Runtime type information.
declareRunTimeSelectionTable | ( | autoPtr | , |
LESModel | , | ||
dictionary | , | ||
(const volVectorField &U, const surfaceScalarField &phi, transportModel &lamTransportModel) | , | ||
(U, phi, lamTransportModel) | |||
) |
|
static |
Return a reference to the selected LES model.
Definition at line 94 of file LESModel.C.
References TimePaths::constant(), IOobject::db(), Foam::endl(), Foam::exit(), Foam::FatalError, FatalErrorIn, Foam::Info, dictionary::lookup(), IOobject::MUST_READ, IOobject::NO_WRITE, phi, IOobject::time(), and U.
|
inline |
Const access to the coefficients dictionary,.
which provides info. about choice of models, and all related data (particularly model coefficients).
Definition at line 161 of file LESModel.H.
References incompressible::LESModel::coeffDict_.
Referenced by Smagorinsky2::read(), scaleSimilarity::read(), GenEddyVisc::read(), spectEddyVisc::read(), LRRDiffStress::read(), DeardorffDiffStress::read(), Smagorinsky::read(), SpalartAllmarasIDDES::read(), GenSGSStress::read(), oneEqEddy::read(), dynOneEqEddy::read(), homogeneousDynSmagorinsky::read(), locDynOneEqEddy::read(), SpalartAllmaras::read(), and kOmegaSSTSAS::read().
|
inlinevirtual |
Access function to filter width.
Reimplemented in SpalartAllmarasIDDES.
Definition at line 167 of file LESModel.H.
References incompressible::LESModel::delta_.
Referenced by Smagorinsky2::B(), LRRDiffStress::correct(), DeardorffDiffStress::correct(), oneEqEddy::correct(), dynOneEqEddy::correct(), homogeneousDynSmagorinsky::correct(), locDynOneEqEddy::correct(), SpalartAllmarasDDES::dTilda(), SpalartAllmaras::dTilda(), GenEddyVisc::epsilon(), GenSGSStress::epsilon(), Smagorinsky::k(), and spectEddyVisc::k().
|
inline |
Return the value of k0 which k is not allowed to be less than.
Definition at line 173 of file LESModel.H.
References incompressible::LESModel::k0_.
Referenced by LRRDiffStress::correct(), DeardorffDiffStress::correct(), oneEqEddy::correct(), dynOneEqEddy::correct(), locDynOneEqEddy::correct(), and kOmegaSSTSAS::correct().
|
inline |
Allow k0 to be changed.
Definition at line 179 of file LESModel.H.
References incompressible::LESModel::k0_.
|
pure virtual |
Return the SGS turbulent kinetic energy.
Implements incompressible::turbulenceModel.
Implemented in kOmegaSSTSAS, SpalartAllmaras, locDynOneEqEddy, homogeneousDynSmagorinsky, dynOneEqEddy, Smagorinsky, spectEddyVisc, oneEqEddy, mixedSmagorinsky, GenSGSStress, scaleSimilarity, GenEddyVisc, and laminar.
|
pure virtual |
Return the SGS turbulent dissipation.
Implements incompressible::turbulenceModel.
Implemented in kOmegaSSTSAS, SpalartAllmaras, mixedSmagorinsky, GenSGSStress, scaleSimilarity, GenEddyVisc, and laminar.
|
pure virtual |
Return the SGS viscosity.
Implemented in kOmegaSSTSAS, SpalartAllmaras, mixedSmagorinsky, GenSGSStress, GenEddyVisc, and laminar.
Referenced by incompressible::LESModel::nuEff(), and incompressible::LESModel::nut().
|
inlinevirtual |
Return the effective viscosity.
Implements incompressible::turbulenceModel.
Reimplemented in laminar.
Definition at line 195 of file LESModel.H.
References nu, and incompressible::LESModel::nuSgs().
Referenced by LRRDiffStress::correct(), DeardorffDiffStress::correct(), GenEddyVisc::devBeff(), SpalartAllmaras::devBeff(), kOmegaSSTSAS::devBeff(), GenEddyVisc::divDevBeff(), SpalartAllmaras::divDevBeff(), kOmegaSSTSAS::divDevBeff(), SpalartAllmaras::epsilon(), kOmegaSSTSAS::epsilon(), and spectEddyVisc::k().
|
pure virtual |
Return the sub-grid stress tensor.
Implemented in kOmegaSSTSAS, SpalartAllmaras, mixedSmagorinsky, GenSGSStress, GenEddyVisc, Smagorinsky2, scaleSimilarity, and laminar.
Referenced by incompressible::LESModel::R().
|
pure virtual |
Return the deviatoric part of the effective sub-grid.
turbulence stress tensor including the laminar stress
Implemented in kOmegaSSTSAS, SpalartAllmaras, mixedSmagorinsky, GenSGSStress, GenEddyVisc, scaleSimilarity, and laminar.
Referenced by incompressible::LESModel::devReff().
|
pure virtual |
Returns div(dev(Beff)).
This is the additional term due to the filtering of the NSE.
Implemented in kOmegaSSTSAS, SpalartAllmaras, mixedSmagorinsky, GenSGSStress, GenEddyVisc, scaleSimilarity, Smagorinsky2, and laminar.
Referenced by incompressible::LESModel::divDevReff().
|
inlinevirtual |
Return the turbulence viscosity.
Implements incompressible::turbulenceModel.
Definition at line 218 of file LESModel.H.
References incompressible::LESModel::nuSgs().
|
inlinevirtual |
Return the Reynolds stress tensor.
Implements incompressible::turbulenceModel.
Definition at line 224 of file LESModel.H.
References incompressible::LESModel::B().
|
inlinevirtual |
Return the effective stress tensor including the laminar stress.
Implements incompressible::turbulenceModel.
Definition at line 230 of file LESModel.H.
References incompressible::LESModel::devBeff().
|
inlinevirtual |
Return the source term for the momentum equation.
Definition at line 236 of file LESModel.H.
References incompressible::LESModel::divDevBeff().
|
virtual |
Correct Eddy-Viscosity and related properties.
This calls correct(const tmp<volTensorField>& gradU) by supplying gradU calculated locally.
Implements incompressible::turbulenceModel.
Definition at line 152 of file LESModel.C.
References correct(), and Foam::fvc::grad().
Referenced by GenEddyVisc::correct(), spectEddyVisc::correct(), LRRDiffStress::correct(), DeardorffDiffStress::correct(), Smagorinsky::correct(), oneEqEddy::correct(), mixedSmagorinsky::correct(), dynOneEqEddy::correct(), homogeneousDynSmagorinsky::correct(), locDynOneEqEddy::correct(), SpalartAllmaras::correct(), and kOmegaSSTSAS::correct().
|
virtual |
Correct Eddy-Viscosity and related properties.
Reimplemented in kOmegaSSTSAS, SpalartAllmaras, locDynOneEqEddy, homogeneousDynSmagorinsky, dynOneEqEddy, mixedSmagorinsky, oneEqEddy, Smagorinsky, DeardorffDiffStress, LRRDiffStress, GenEddyVisc, spectEddyVisc, and scaleSimilarity.
Definition at line 145 of file LESModel.C.
References correct().
|
pure virtual |
Read LESProperties dictionary.
Implements incompressible::turbulenceModel.
Implemented in kOmegaSSTSAS, SpalartAllmaras, locDynOneEqEddy, homogeneousDynSmagorinsky, dynOneEqEddy, mixedSmagorinsky, oneEqEddy, GenSGSStress, Smagorinsky, SpalartAllmarasIDDES, DeardorffDiffStress, LRRDiffStress, GenEddyVisc, spectEddyVisc, scaleSimilarity, Smagorinsky2, and laminar.
Definition at line 158 of file LESModel.C.
References regIOobject::read(), readIfPresent(), and Foam::type().
|
protected |
Definition at line 81 of file LESModel.H.
|
protected |
Definition at line 82 of file LESModel.H.
Referenced by incompressible::LESModel::coeffDict().
|
protected |
Definition at line 84 of file LESModel.H.
Referenced by incompressible::LESModel::k0().
Definition at line 86 of file LESModel.H.
Referenced by incompressible::LESModel::delta().