Intermediate abstract class for handling face-set options for the derived faOptions.
More...
|
| TypeName ("faceSetOption") |
|
| faceSetOption (const word &name, const word &modelType, const dictionary &dict, const fvPatch &patch) |
|
virtual | ~faceSetOption ()=default |
|
scalar | timeStart () const noexcept |
|
scalar | duration () const noexcept |
|
bool | inTimeLimits (const scalar timeValue) const |
|
selectionModeType | selectionMode () const noexcept |
|
bool | useSubMesh () const noexcept |
|
const word & | faceSetName () const noexcept |
|
scalar | A () const noexcept |
|
const labelList & | faces () const noexcept |
|
scalar | timeStart (scalar val) noexcept |
|
scalar | duration (scalar val) noexcept |
|
virtual bool | isActive () |
|
virtual bool | read (const dictionary &dict) |
|
| TypeName ("option") |
|
| declareRunTimeSelectionTable (autoPtr, option, dictionary,(const word &name, const word &modelType, const dictionary &dict, const fvPatch &patch),(name, modelType, dict, patch)) |
|
| option (const word &name, const word &modelType, const dictionary &dict, const fvPatch &patch) |
|
autoPtr< option > | clone () const |
|
virtual | ~option ()=default |
|
const word & | name () const noexcept |
|
const fvMesh & | mesh () const noexcept |
|
const fvPatch & | patch () const noexcept |
|
const dictionary & | coeffs () const noexcept |
|
bool | active () const noexcept |
|
void | setApplied (const label fieldi) |
|
const word & | regionName () const noexcept |
|
const faMesh & | regionMesh () const |
|
const volSurfaceMapping & | vsm () const |
|
bool | active (const bool on) noexcept |
|
virtual label | applyToField (const word &fieldName) const |
|
virtual void | checkApplied () const |
|
virtual void | addSup (const areaScalarField &h, faMatrix< scalar > &eqn, const label fieldi) |
|
virtual void | addSup (const areaScalarField &h, faMatrix< vector > &eqn, const label fieldi) |
|
virtual void | addSup (const areaScalarField &h, faMatrix< symmTensor > &eqn, const label fieldi) |
|
virtual void | addSup (const areaScalarField &h, faMatrix< sphericalTensor > &eqn, const label fieldi) |
|
virtual void | addSup (const areaScalarField &h, faMatrix< tensor > &eqn, const label fieldi) |
|
virtual void | addSup (const areaScalarField &h, const areaScalarField &rho, faMatrix< scalar > &eqn, const label fieldi) |
|
virtual void | addSup (const areaScalarField &h, const areaScalarField &rho, faMatrix< vector > &eqn, const label fieldi) |
|
virtual void | addSup (const areaScalarField &h, const areaScalarField &rho, faMatrix< symmTensor > &eqn, const label fieldi) |
|
virtual void | addSup (const areaScalarField &h, const areaScalarField &rho, faMatrix< sphericalTensor > &eqn, const label fieldi) |
|
virtual void | addSup (const areaScalarField &h, const areaScalarField &rho, faMatrix< tensor > &eqn, const label fieldi) |
|
virtual void | constrain (faMatrix< scalar > &eqn, const label fieldi) |
|
virtual void | constrain (faMatrix< vector > &eqn, const label fieldi) |
|
virtual void | constrain (faMatrix< sphericalTensor > &eqn, const label fieldi) |
|
virtual void | constrain (faMatrix< symmTensor > &eqn, const label fieldi) |
|
virtual void | constrain (faMatrix< tensor > &eqn, const label fieldi) |
|
virtual void | correct (areaScalarField &field) |
|
virtual void | correct (areaVectorField &field) |
|
virtual void | correct (areaSphericalTensorField &field) |
|
virtual void | correct (areaSymmTensorField &field) |
|
virtual void | correct (areaTensorField &field) |
|
virtual void | writeHeader (Ostream &) const |
|
virtual void | writeFooter (Ostream &) const |
|
virtual void | writeData (Ostream &) const |
|
Intermediate abstract class for handling face-set options for the derived faOptions.
- Usage
- Minimal example by using
constant/faOptions
: <userDefinedName1>
{
// Mandatory/Optional (inherited) entries
...
// Mandatory entries (unmodifiable)
selectionMode all;
// Optional entries (runtime modifiable)
timeStart 1.0;
// Conditional mandatory entries (runtime modifiable)
// when timeStart entry is present
duration 1.4;
// when selectionMode=volFaceZone
faceZone <faceZoneName>;
}
where the entries mean:
Property | Description | Type | Reqd | Dflt |
selectionMode | Mode of face selection - see below | word | yes | - |
timeStart | Start time of faOption | scalar | no | -1 |
duration | Duration of faOption execution starting from timeStart | scalar | cndtnl | 0 |
faceZone | Name of operand faceZone | word | cndtnl | - |
Options for the selectionMode
entry:
all | Use all faces in the computational domain
faceZone | Use a given faceZone
The inherited entries are elaborated in:
- Note
- Source/sink options are to be added to the right-hand side of equations.
- Source files
-
Definition at line 130 of file faceSetOption.H.