multiphaseMangrovesTurbulenceModel Class Reference
Inheritance diagram for multiphaseMangrovesTurbulenceModel:
[legend]
Collaboration diagram for multiphaseMangrovesTurbulenceModel:
[legend]

Public Member Functions

 TypeName ("multiphaseMangrovesTurbulenceModel")
 Runtime type information. More...
 
 multiphaseMangrovesTurbulenceModel (const word &name, const word &modelType, const dictionary &dict, const fvMesh &mesh)
 Construct from components. More...
 
virtual ~multiphaseMangrovesTurbulenceModel ()=default
 Destructor. More...
 
virtual void addSup (fvMatrix< scalar > &eqn, const label fieldi)
 Add implicit contribution to momentum equation. More...
 
virtual void addSup (const volScalarField &rho, fvMatrix< scalar > &eqn, const label fieldi)
 Add implicit contribution to compressible momentum equation. More...
 
virtual bool read (const dictionary &dict)
 Read dictionary. More...
 
- Public Member Functions inherited from option
 TypeName ("option")
 Runtime type information. More...
 
 declareRunTimeSelectionTable (autoPtr, option, dictionary,(const word &name, const word &modelType, const dictionary &dict, const fvMesh &mesh),(name, modelType, dict, mesh))
 
 option (const word &name, const word &modelType, const dictionary &dict, const fvMesh &mesh)
 Construct from components. More...
 
autoPtr< optionclone () const
 Return clone. More...
 
virtual ~option ()=default
 Destructor. More...
 
const wordname () const noexcept
 Return const access to the source name. More...
 
const fvMeshmesh () const noexcept
 Return const access to the mesh database. More...
 
const dictionarycoeffs () const noexcept
 Return dictionary. More...
 
bool active () const noexcept
 True if source is active. More...
 
void setApplied (const label fieldi)
 Set the applied flag to true for field index fieldi. More...
 
bool active (const bool on) noexcept
 Change source active flag, return previous value. More...
 
virtual bool isActive ()
 Is the source active? More...
 
virtual label applyToField (const word &fieldName) const
 Return index of field name if found in fieldNames list. More...
 
virtual void checkApplied () const
 Check that the source has been applied. More...
 
virtual void addSup (fvMatrix< scalar > &eqn, const label fieldi)
 
virtual void addSup (fvMatrix< vector > &eqn, const label fieldi)
 
virtual void addSup (fvMatrix< symmTensor > &eqn, const label fieldi)
 
virtual void addSup (fvMatrix< sphericalTensor > &eqn, const label fieldi)
 
virtual void addSup (fvMatrix< tensor > &eqn, const label fieldi)
 
virtual void addSup (const volScalarField &rho, fvMatrix< scalar > &eqn, const label fieldi)
 
virtual void addSup (const volScalarField &rho, fvMatrix< vector > &eqn, const label fieldi)
 
virtual void addSup (const volScalarField &rho, fvMatrix< symmTensor > &eqn, const label fieldi)
 
virtual void addSup (const volScalarField &rho, fvMatrix< sphericalTensor > &eqn, const label fieldi)
 
virtual void addSup (const volScalarField &rho, fvMatrix< tensor > &eqn, const label fieldi)
 
virtual void addSup (const volScalarField &alpha, const volScalarField &rho, fvMatrix< scalar > &eqn, const label fieldi)
 
virtual void addSup (const volScalarField &alpha, const volScalarField &rho, fvMatrix< vector > &eqn, const label fieldi)
 
virtual void addSup (const volScalarField &alpha, const volScalarField &rho, fvMatrix< symmTensor > &eqn, const label fieldi)
 
virtual void addSup (const volScalarField &alpha, const volScalarField &rho, fvMatrix< sphericalTensor > &eqn, const label fieldi)
 
virtual void addSup (const volScalarField &alpha, const volScalarField &rho, fvMatrix< tensor > &eqn, const label fieldi)
 
virtual void constrain (fvMatrix< scalar > &eqn, const label fieldi)
 
virtual void constrain (fvMatrix< vector > &eqn, const label fieldi)
 
virtual void constrain (fvMatrix< sphericalTensor > &eqn, const label fieldi)
 
virtual void constrain (fvMatrix< symmTensor > &eqn, const label fieldi)
 
virtual void constrain (fvMatrix< tensor > &eqn, const label fieldi)
 
virtual void correct (volScalarField &field)
 
virtual void correct (volVectorField &field)
 
virtual void correct (volSphericalTensorField &field)
 
virtual void correct (volSymmTensorField &field)
 
virtual void correct (volTensorField &field)
 
virtual void postProcessSens (scalarField &sensField, const word &fieldName=word::null, const word &designVariablesName=word::null)
 
virtual void postProcessSens (vectorField &sensField, const word &fieldName=word::null, const word &designVariablesName=word::null)
 
virtual void postProcessSens (tensorField &sensField, const word &fieldName=word::null, const word &designVariablesName=word::null)
 
virtual void writeHeader (Ostream &) const
 Write the source header information. More...
 
virtual void writeFooter (Ostream &) const
 Write the source footer information. More...
 
virtual void writeData (Ostream &) const
 Write the source properties. More...
 
virtual bool read (const dictionary &dict)
 Read source dictionary. More...
 

Protected Member Functions

tmp< volScalarFieldkCoeff (const volVectorField &U) const
 Return the k coefficient. More...
 
tmp< volScalarFieldepsilonCoeff (const volVectorField &U) const
 Return the epsilon coefficient. More...
 
- Protected Member Functions inherited from option
void resetApplied ()
 Resize/reset applied flag list for all fieldNames_ entries. More...
 

Protected Attributes

scalarList aZone_
 Width of the vegetation element. More...
 
scalarList NZone_
 Number of plants per unit of area. More...
 
scalarList CkpZone_
 Ckp. More...
 
scalarList CepZone_
 Cep. More...
 
scalarList CdZone_
 Drag coefficient. More...
 
labelListList zoneIDs_
 Zone indices. More...
 
word UName_
 Name of U; default = U. More...
 
word kName_
 Name of k; default = k. More...
 
word epsilonName_
 Name of epsilon; default = epsilon. More...
 
- Protected Attributes inherited from option
const word name_
 Source name. More...
 
const word modelType_
 Model type. More...
 
const fvMeshmesh_
 Reference to the mesh database. More...
 
dictionary dict_
 Top level source dictionary. More...
 
dictionary coeffs_
 Dictionary containing source coefficients. More...
 
wordList fieldNames_
 Field names to apply source to - populated by derived models. More...
 
List< boolapplied_
 Applied flag list - corresponds to each fieldNames_ entry. More...
 
bool active_
 Source active flag. More...
 

Additional Inherited Members

- Static Public Member Functions inherited from option
static autoPtr< optionNew (const word &name, const dictionary &dict, const fvMesh &mesh)
 Return a reference to the selected fvOption model. More...
 
- Public Attributes inherited from option
bool log
 Switch write log to Info. More...
 

Detailed Description

Constructor & Destructor Documentation

◆ multiphaseMangrovesTurbulenceModel()

multiphaseMangrovesTurbulenceModel ( const word name,
const word modelType,
const dictionary dict,
const fvMesh mesh 
)

Construct from components.

Definition at line 149 of file multiphaseMangrovesTurbulenceModel.C.

References dict, fv(), and multiphaseMangrovesTurbulenceModel::read().

Here is the call graph for this function:

◆ ~multiphaseMangrovesTurbulenceModel()

virtual ~multiphaseMangrovesTurbulenceModel ( )
virtualdefault

Destructor.

Member Function Documentation

◆ kCoeff()

Foam::tmp< Foam::volScalarField > kCoeff ( const volVectorField U) const
protected

Return the k coefficient.

Definition at line 56 of file multiphaseMangrovesTurbulenceModel.C.

References multiphaseMangrovesTurbulenceModel::aZone_, multiphaseMangrovesTurbulenceModel::CdZone_, polyMesh::cellZones(), multiphaseMangrovesTurbulenceModel::CkpZone_, Foam::dimless, Foam::dimTime, forAll, multiphaseMangrovesTurbulenceModel::kCoeff(), Foam::mag(), option::mesh_, N(), Time::New(), IOobject::NO_READ, IOobject::NO_WRITE, multiphaseMangrovesTurbulenceModel::NZone_, fvMesh::time(), Time::timeName(), U, Foam::Zero, and multiphaseMangrovesTurbulenceModel::zoneIDs_.

Referenced by multiphaseMangrovesTurbulenceModel::kCoeff().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ epsilonCoeff()

Foam::tmp< Foam::volScalarField > epsilonCoeff ( const volVectorField U) const
protected

Return the epsilon coefficient.

Definition at line 102 of file multiphaseMangrovesTurbulenceModel.C.

References GeometricField< Type, PatchField, GeoMesh >::correctBoundaryConditions(), Foam::dimless, Foam::dimTime, forAll, Foam::mag(), N(), Time::New(), IOobject::NO_READ, IOobject::NO_WRITE, GeometricField< Type, PatchField, GeoMesh >::ref(), U, and Foam::Zero.

Here is the call graph for this function:

◆ TypeName()

TypeName ( "multiphaseMangrovesTurbulenceModel"  )

Runtime type information.

◆ addSup() [1/2]

void addSup ( fvMatrix< scalar > &  eqn,
const label  fieldi 
)
virtual

Add implicit contribution to momentum equation.

Reimplemented from option.

Definition at line 173 of file multiphaseMangrovesTurbulenceModel.C.

References fvMatrix< Type >::psi(), Foam::fvm::Sp(), and U.

Here is the call graph for this function:

◆ addSup() [2/2]

void addSup ( const volScalarField rho,
fvMatrix< scalar > &  eqn,
const label  fieldi 
)
virtual

Add implicit contribution to compressible momentum equation.

Reimplemented from option.

Definition at line 200 of file multiphaseMangrovesTurbulenceModel.C.

References fvMatrix< Type >::psi(), rho, Foam::fvm::Sp(), and U.

Here is the call graph for this function:

◆ read()

bool read ( const dictionary dict)
virtual

Read dictionary.

Reimplemented from option.

Definition at line 228 of file multiphaseMangrovesTurbulenceModel.C.

References dict, Foam::exit(), Foam::FatalError, FatalErrorInFunction, forAll, dictionary::get(), Foam::nl, kEpsilonLopesdaCosta< BasicTurbulenceModel >::read(), dictionary::readEntry(), regionName, regionNames, option::resetApplied(), dictionary::subDict(), and dictionary::toc().

Referenced by multiphaseMangrovesTurbulenceModel::multiphaseMangrovesTurbulenceModel().

Here is the call graph for this function:
Here is the caller graph for this function:

Member Data Documentation

◆ aZone_

scalarList aZone_
protected

Width of the vegetation element.

Definition at line 83 of file multiphaseMangrovesTurbulenceModel.H.

Referenced by multiphaseMangrovesTurbulenceModel::kCoeff().

◆ NZone_

scalarList NZone_
protected

Number of plants per unit of area.

Definition at line 86 of file multiphaseMangrovesTurbulenceModel.H.

Referenced by multiphaseMangrovesTurbulenceModel::kCoeff().

◆ CkpZone_

scalarList CkpZone_
protected

◆ CepZone_

scalarList CepZone_
protected

Cep.

Definition at line 92 of file multiphaseMangrovesTurbulenceModel.H.

◆ CdZone_

scalarList CdZone_
protected

Drag coefficient.

Definition at line 95 of file multiphaseMangrovesTurbulenceModel.H.

Referenced by multiphaseMangrovesTurbulenceModel::kCoeff().

◆ zoneIDs_

labelListList zoneIDs_
protected

Zone indices.

Definition at line 98 of file multiphaseMangrovesTurbulenceModel.H.

Referenced by multiphaseMangrovesTurbulenceModel::kCoeff().

◆ UName_

word UName_
protected

Name of U; default = U.

Definition at line 104 of file multiphaseMangrovesTurbulenceModel.H.

◆ kName_

word kName_
protected

Name of k; default = k.

Definition at line 107 of file multiphaseMangrovesTurbulenceModel.H.

◆ epsilonName_

word epsilonName_
protected

Name of epsilon; default = epsilon.

Definition at line 110 of file multiphaseMangrovesTurbulenceModel.H.


The documentation for this class was generated from the following files: