Applies sources on a specified field within a specified region by using an external table file for compressible flows.
More...
|
| TypeName ("externalFileSource") |
|
| externalFileSource (const word &sourceName, const word &modelType, const dictionary &dict, const fvPatch &patch) |
|
| externalFileSource (const externalFileSource &)=delete |
|
void | operator= (const externalFileSource &)=delete |
|
virtual | ~externalFileSource ()=default |
|
virtual void | addSup (const areaScalarField &rho, faMatrix< scalar > &eqn, const label fieldi) |
|
virtual bool | read (const dictionary &dict) |
|
| 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 () |
|
| 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< 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 |
|
Applies sources on a specified field within a specified region by using an external table file for compressible flows.
- Usage
- Minimal example by using
constant/faOptions
: externalFileSource1
{
// Mandatory entries (unmodifiable)
type externalFileSource;
fieldName <fieldName>;
tableName <tableFileName.dat>;
// Mandatory/Optional (inherited) entries
...
}
where the entries mean:
Property | Description | Type | Reqd | Dflt |
type | Type name: externalFileSource | word | yes | - |
fieldName | Name of operand field | word | yes | - |
tableName | Name of operand table file | word | yes | - |
The inherited entries are elaborated in:
- See also
-
- Source files
-
Definition at line 109 of file externalFileSource.H.