Cell-set options abstract base class. Provides a base set of controls, e.g.: More...
Public Types | |
| enum | selectionModeType { smPoints, smCellSet, smCellZone, smAll } |
| Enumeration for selection mode types. More... | |
Public Member Functions | |
| TypeName ("cellSetOption") | |
| Runtime type information. More... | |
| cellSetOption (const word &name, const word &modelType, const dictionary &dict, const fvMesh &mesh) | |
| Construct from components. More... | |
| virtual | ~cellSetOption ()=default |
| Destructor. More... | |
| scalar | timeStart () const |
| Return const access to the time start. More... | |
| scalar | duration () const |
| Return const access to the duration. More... | |
| bool | inTimeLimits (const scalar time) const |
| Return true if within time limits. More... | |
| const selectionModeType & | selectionMode () const |
| Return const access to the cell selection mode. More... | |
| const word & | cellSetName () const |
| Return const access to the name of cell set for "cellSet". More... | |
| scalar | V () const |
| Return const access to the total cell volume. More... | |
| const labelList & | cells () const |
| Return const access to the cell set. More... | |
| scalar & | timeStart () |
| Return access to the time start. More... | |
| scalar & | duration () |
| Return access to the duration. More... | |
| virtual bool | isActive () |
| Is the source active? More... | |
| virtual bool | read (const dictionary &dict) |
| Read source 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< option > | clone () const |
| Return clone. More... | |
| virtual | ~option ()=default |
| 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 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... | |
Static Public Attributes | |
| static const Enum< selectionModeType > | selectionModeTypeNames_ |
| List of selection mode type names. More... | |
Protected Member Functions | |
| void | setSelection (const dictionary &dict) |
| Set the cellSet or points selection. More... | |
| void | setCellSet () |
| Set the cell set based on the user input selection mode. More... | |
| void | setVol () |
| Recalculate the volume. More... | |
Protected Attributes | |
| scalar | timeStart_ |
| Time start. More... | |
| scalar | duration_ |
| Duration. More... | |
| selectionModeType | selectionMode_ |
| Cell selection mode. More... | |
| word | cellSetName_ |
| Name of set/zone for "cellSet" and "cellZone" selectionMode. More... | |
| List< point > | points_ |
| List of points for "points" selectionMode. More... | |
| labelList | cells_ |
| Set of cells to apply source to. More... | |
| scalar | V_ |
| Sum of cell volumes. More... | |
Protected Attributes inherited from option | |
| 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... | |
Additional Inherited Members | |
Static Public Member Functions inherited from option | |
| static autoPtr< option > | New (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... | |
Cell-set options abstract base class. Provides a base set of controls, e.g.:
type scalarExplicitSource // Source type
active on; // on/off switch
timeStart 0.0; // Start time
duration 1000.0; // Duration
selectionMode cellSet; // cellSet, points, cellZone
.
.
.
Definition at line 72 of file cellSetOption.H.
| enum selectionModeType |
Enumeration for selection mode types.
| Enumerator | |
|---|---|
| smPoints | |
| smCellSet | |
| smCellZone | |
| smAll | |
Definition at line 81 of file cellSetOption.H.
| cellSetOption | ( | const word & | name, |
| const word & | modelType, | ||
| const dictionary & | dict, | ||
| const fvMesh & | mesh | ||
| ) |
Construct from components.
Definition at line 200 of file cellSetOption.C.
References Foam::decrIndent(), dict, Foam::incrIndent(), Foam::Info, and Foam::read().
|
virtualdefault |
Destructor.
|
protected |
Set the cellSet or points selection.
Definition at line 58 of file cellSetOption.C.
References cellSetOption::cellSetName_, dict, Foam::exit(), Foam::FatalError, FatalErrorInFunction, cellSetOption::points_, cellSetOption::selectionMode_, cellSetOption::selectionModeTypeNames_, cellSetOption::smAll, cellSetOption::smCellSet, cellSetOption::smCellZone, and cellSetOption::smPoints.
|
protected |
Set the cell set based on the user input selection mode.
Definition at line 121 of file cellSetOption.C.
References Foam::endl(), Foam::exit(), Foam::FatalError, FatalErrorInFunction, forAll, Foam::identity(), Foam::indent(), Foam::Info, HashSet< Key, Hash >::insert(), Foam::returnReduce(), HashTable< T, Key, Hash >::sortedToc(), WarningInFunction, and zoneID.
|
protected |
Recalculate the volume.
Definition at line 94 of file cellSetOption.C.
References IOstream::defaultPrecision(), Foam::endl(), Foam::indent(), Foam::Info, Foam::reduce(), Foam::returnReduce(), and Time::timeName().
| TypeName | ( | "cellSetOption" | ) |
Runtime type information.
|
inline |
Return const access to the time start.
Definition at line 30 of file cellSetOptionI.H.
References cellSetOption::timeStart_.
|
inline |
Return const access to the duration.
Definition at line 36 of file cellSetOptionI.H.
|
inline |
Return true if within time limits.
Definition at line 42 of file cellSetOptionI.H.
|
inline |
Return const access to the cell selection mode.
Definition at line 57 of file cellSetOptionI.H.
|
inline |
Return const access to the name of cell set for "cellSet".
selectionMode
Definition at line 63 of file cellSetOptionI.H.
|
inline |
Return const access to the total cell volume.
Definition at line 69 of file cellSetOptionI.H.
|
inline |
Return const access to the cell set.
Definition at line 75 of file cellSetOptionI.H.
|
inline |
Return access to the time start.
Definition at line 81 of file cellSetOptionI.H.
|
inline |
Return access to the duration.
Definition at line 87 of file cellSetOptionI.H.
|
virtual |
Is the source active?
Reimplemented from option.
Definition at line 225 of file cellSetOption.C.
References option::isActive().
|
virtual |
Read source dictionary.
Reimplemented from option.
Reimplemented in actuationDiskSource, effectivenessHeatExchangerSource, solidificationMeltingSource, rotorDiskSource, atmBuoyancyTurbSource, atmLengthScaleTurbSource, atmAmbientTurbSource, atmCoriolisUSource, directionalPressureGradientExplicitSource, atmPlantCanopyTurbSource, VoFSolidificationMeltingSource, radialActuationDiskSource, CodedSource< Type >, atmPlantCanopyTSource, atmPlantCanopyUSource, acousticDampingSource, meanVelocityForce, atmNutSource, explicitPorositySource, fixedTemperatureConstraint, velocityDampingConstraint, limitTemperature, limitVelocity, and FixedValueConstraint< Type >.
Definition at line 255 of file cellSetOption.C.
References dict, and option::read().
Referenced by limitVelocity::read(), limitTemperature::read(), fixedTemperatureConstraint::read(), velocityDampingConstraint::read(), explicitPorositySource::read(), acousticDampingSource::read(), solidificationMeltingSource::read(), effectivenessHeatExchangerSource::read(), and actuationDiskSource::read().
|
static |
List of selection mode type names.
Definition at line 90 of file cellSetOption.H.
Referenced by cellSetOption::setSelection().
|
protected |
Time start.
Definition at line 98 of file cellSetOption.H.
Referenced by cellSetOption::timeStart().
|
protected |
Duration.
Definition at line 101 of file cellSetOption.H.
|
protected |
Cell selection mode.
Definition at line 104 of file cellSetOption.H.
Referenced by cellSetOption::setSelection().
|
protected |
Name of set/zone for "cellSet" and "cellZone" selectionMode.
Definition at line 107 of file cellSetOption.H.
Referenced by cellSetOption::setSelection().
List of points for "points" selectionMode.
Definition at line 110 of file cellSetOption.H.
Referenced by cellSetOption::setSelection().
|
protected |
Set of cells to apply source to.
Definition at line 113 of file cellSetOption.H.
Referenced by meanVelocityForce::correct(), and acousticDampingSource::setBlendingFactor().
|
protected |
Sum of cell volumes.
Definition at line 116 of file cellSetOption.H.
Referenced by meanVelocityForce::correct().