Finite volume options abtract base class. Provides a base set of controls, e.g. More...
Data Structures | |
class | iNew |
Return pointer to new fvOption object created. More... | |
Public Member Functions | |
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< option > | clone () const |
Return clone. More... | |
virtual | ~option () |
Destructor. More... | |
const word & | name () const |
Return const access to the source name. More... | |
const fvMesh & | mesh () const |
Return const access to the mesh database. More... | |
const dictionary & | coeffs () const |
Return dictionary. More... | |
bool | active () const |
Return const access to the source active flag. More... | |
void | setApplied (const label fieldI) |
Set the applied flag to true for field index fieldI. More... | |
Switch & | active () |
Return access to the source active flag. 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 | 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... | |
Static Public Member Functions | |
static autoPtr< option > | New (const word &name, const dictionary &dict, const fvMesh &mesh) |
Return a reference to the selected fvOption model. More... | |
Protected Attributes | |
const word | name_ |
Source name. More... | |
const word | modelType_ |
Model type. More... | |
const fvMesh & | mesh_ |
Reference to the mesh database. More... | |
dictionary | dict_ |
Top level source dictionary. More... | |
dictionary | coeffs_ |
Dictionary containing source coefficients. More... | |
Switch | active_ |
Source active flag. More... | |
wordList | fieldNames_ |
Field names to apply source to - populated by derived models. More... | |
List< bool > | applied_ |
Applied flag list - corresponds to each fieldNames_ entry. More... | |
Finite volume options abtract base class. Provides a base set of controls, e.g.
type scalarExplicitSource // source type active on; // on/off switch
Note: On evaluation, source/sink options are to be added to the equation R.H.S.
Definition at line 65 of file fvOption.H.
option | ( | const word & | name, |
const word & | modelType, | ||
const dictionary & | dict, | ||
const fvMesh & | mesh | ||
) |
Construct from components.
Definition at line 44 of file fvOption.C.
References Foam::decrIndent(), Foam::endl(), Foam::incrIndent(), Foam::indent(), and Foam::Info.
|
virtual |
Destructor.
Definition at line 94 of file fvOption.C.
TypeName | ( | "option" | ) |
Runtime type information.
declareRunTimeSelectionTable | ( | autoPtr | , |
option | , | ||
dictionary | , | ||
(const word &name, const word &modelType, const dictionary &dict, const fvMesh &mesh) | , | ||
(name, modelType, dict, mesh) | |||
) |
|
static |
Return a reference to the selected fvOption model.
Definition at line 67 of file fvOption.C.
References Foam::endl(), Foam::exit(), Foam::FatalError, FatalErrorInFunction, Foam::indent(), Foam::Info, dictionary::lookup(), mesh, Foam::name(), and Foam::nl.
Referenced by option::iNew::operator()(), and optionList::reset().
|
inline |
Return const access to the source name.
Definition at line 28 of file fvOptionI.H.
References option::name_.
Referenced by optionList::constrain(), optionList::correct(), optionList::operator()(), optionList::readOptions(), and interRegionHeatTransferModel::setNbrModel().
|
inline |
Return const access to the mesh database.
Definition at line 34 of file fvOptionI.H.
|
inline |
Return dictionary.
Definition at line 40 of file fvOptionI.H.
|
inline |
Return const access to the source active flag.
Definition at line 46 of file fvOptionI.H.
|
inline |
Set the applied flag to true for field index fieldI.
Definition at line 52 of file fvOptionI.H.
Referenced by optionList::constrain(), optionList::correct(), and optionList::operator()().
|
inline |
Return access to the source active flag.
|
virtual |
Is the source active?
Reimplemented in cellSetOption.
Definition at line 100 of file fvOption.C.
Referenced by optionList::constrain(), optionList::correct(), cellSetOption::isActive(), and optionList::operator()().
|
virtual |
Return index of field name if found in fieldNames list.
Definition at line 106 of file fvOption.C.
References Foam::findIndex().
Referenced by optionList::constrain(), optionList::correct(), and optionList::operator()().
|
virtual |
Check that the source has been applied.
Definition at line 112 of file fvOption.C.
References Foam::endl(), forAll, and WarningInFunction.
Referenced by optionList::checkApplied().
Reimplemented in effectivenessHeatExchangerSource, solidificationMeltingSource, dalpeMassonCanopySource, dalpeMassonCanopySource, svenssonHaggkvistCanopySource, svenssonHaggkvistCanopySource, and interRegionHeatTransferModel.
Definition at line 127 of file fvOption.C.
Referenced by optionList::operator()().
Reimplemented in rotorDiskSource, solidificationMeltingSource, dalpeMassonCanopySource, dalpeMassonCanopySource, directionalPressureGradientExplicitSource, actuationDiskSource, svenssonHaggkvistCanopySource, svenssonHaggkvistCanopySource, radialActuationDiskSource, canopySource, canopySource, meanVelocityForce, interRegionExplicitPorositySource, explicitPorositySource, and tabulatedAccelerationSource.
Definition at line 135 of file fvOption.C.
|
virtual |
Definition at line 151 of file fvOption.C.
|
virtual |
Definition at line 143 of file fvOption.C.
Definition at line 159 of file fvOption.C.
|
virtual |
Reimplemented in effectivenessHeatExchangerSource, solidificationMeltingSource, dalpeMassonCanopySource, dalpeMassonCanopySource, svenssonHaggkvistCanopySource, svenssonHaggkvistCanopySource, interRegionHeatTransferModel, and buoyancyEnergy.
Definition at line 167 of file fvOption.C.
|
virtual |
Reimplemented in solidificationMeltingSource, rotorDiskSource, dalpeMassonCanopySource, dalpeMassonCanopySource, directionalPressureGradientExplicitSource, svenssonHaggkvistCanopySource, svenssonHaggkvistCanopySource, actuationDiskSource, radialActuationDiskSource, canopySource, interRegionExplicitPorositySource, canopySource, meanVelocityForce, explicitPorositySource, tabulatedAccelerationSource, and buoyancyForce.
Definition at line 176 of file fvOption.C.
|
virtual |
Definition at line 194 of file fvOption.C.
|
virtual |
Definition at line 185 of file fvOption.C.
|
virtual |
Definition at line 203 of file fvOption.C.
|
virtual |
Definition at line 212 of file fvOption.C.
References Foam::constant::atomic::alpha, and rho.
|
virtual |
Reimplemented in explicitPorositySource.
Definition at line 224 of file fvOption.C.
References Foam::constant::atomic::alpha, and rho.
|
virtual |
Definition at line 248 of file fvOption.C.
References Foam::constant::atomic::alpha, and rho.
|
virtual |
Definition at line 236 of file fvOption.C.
References Foam::constant::atomic::alpha, and rho.
|
virtual |
Definition at line 260 of file fvOption.C.
References Foam::constant::atomic::alpha, and rho.
Reimplemented in fixedTemperatureConstraint.
Definition at line 271 of file fvOption.C.
Referenced by optionList::constrain().
Reimplemented in directionalPressureGradientExplicitSource, meanVelocityForce, and velocityDampingConstraint.
Definition at line 275 of file fvOption.C.
|
virtual |
Definition at line 280 of file fvOption.C.
|
virtual |
Definition at line 288 of file fvOption.C.
Definition at line 295 of file fvOption.C.
|
virtual |
Reimplemented in limitTemperature.
Definition at line 299 of file fvOption.C.
Referenced by optionList::correct().
|
virtual |
Reimplemented in directionalPressureGradientExplicitSource, and meanVelocityForce.
Definition at line 303 of file fvOption.C.
|
virtual |
Reimplemented in directionalPressureGradientExplicitSource, and meanVelocityForce.
|
virtual |
Reimplemented in directionalPressureGradientExplicitSource, and meanVelocityForce.
|
virtual |
Reimplemented in directionalPressureGradientExplicitSource, and meanVelocityForce.
|
virtual |
Write the source header information.
Definition at line 30 of file fvOptionIO.C.
References token::BEGIN_BLOCK, Foam::incrIndent(), Foam::indent(), option::name_, and Foam::nl.
|
virtual |
Write the source footer information.
Definition at line 37 of file fvOptionIO.C.
References Foam::decrIndent(), token::END_BLOCK, Foam::endl(), and Foam::indent().
|
virtual |
Write the source properties.
Reimplemented in directionalPressureGradientExplicitSource, and velocityDampingConstraint.
Definition at line 43 of file fvOptionIO.C.
References token::END_STATEMENT, Foam::indent(), Foam::nl, Foam::type(), and Ostream::writeKeyword().
|
virtual |
Read source dictionary.
Reimplemented in solidificationMeltingSource, rotorDiskSource, effectivenessHeatExchangerSource, directionalPressureGradientExplicitSource, CodedSource< Type >, actuationDiskSource, canopySource, canopySource, cellSetOption, interRegionHeatTransferModel, radialActuationDiskSource, meanVelocityForce, interRegionExplicitPorositySource, explicitPorositySource, tabulatedAccelerationSource, fixedTemperatureConstraint, velocityDampingConstraint, limitTemperature, ExplicitSetValue< Type >, variableHeatTransfer, buoyancyEnergy, buoyancyForce, tabulatedHeatTransfer, interRegionOption, and constantHeatTransfer.
Definition at line 53 of file fvOptionIO.C.
References dict.
Referenced by interRegionOption::read(), tabulatedAccelerationSource::read(), cellSetOption::read(), canopySource::read(), and optionList::readOptions().
|
protected |
Source name.
Definition at line 72 of file fvOption.H.
Referenced by velocityDampingConstraint::addDamping(), solidificationMeltingSource::Cp(), interRegionExplicitPorositySource::initialise(), option::name(), and option::writeHeader().
|
protected |
Model type.
Definition at line 75 of file fvOption.H.
|
protected |
Reference to the mesh database.
Definition at line 78 of file fvOption.H.
Referenced by velocityDampingConstraint::addDamping(), limitTemperature::correct(), meanVelocityForce::correct(), solidificationMeltingSource::Cp(), interRegionExplicitPorositySource::initialise(), directionalPressureGradientExplicitSource::initialise(), effectivenessHeatExchangerSource::initialise(), interRegionOption::setMapper(), and interRegionHeatTransferModel::setNbrModel().
|
protected |
Top level source dictionary.
Definition at line 81 of file fvOption.H.
|
protected |
Dictionary containing source coefficients.
Definition at line 84 of file fvOption.H.
Referenced by solidificationMeltingSource::Cp(), tabulatedHeatTransfer::hTable(), interRegionExplicitPorositySource::initialise(), fixedTemperatureConstraint::read(), tabulatedAccelerationSource::read(), explicitPorositySource::read(), radialActuationDiskSource::read(), cellSetOption::read(), solidificationMeltingSource::read(), and interRegionOption::setMapper().
|
protected |
Source active flag.
Definition at line 87 of file fvOption.H.
|
protected |
Field names to apply source to - populated by derived models.
Definition at line 90 of file fvOption.H.
Referenced by explicitPorositySource::read().
|
protected |
Applied flag list - corresponds to each fieldNames_ entry.
Definition at line 93 of file fvOption.H.
Referenced by explicitPorositySource::read().
Copyright © 2011-2018 OpenFOAM | OPENFOAM® is a registered trademark of OpenCFD Ltd.