|
| TypeName ("interRegionExplicitPorositySource") |
|
| interRegionExplicitPorositySource (const word &name, const word &modelType, const dictionary &dict, const fvMesh &mesh) |
|
| interRegionExplicitPorositySource (const interRegionExplicitPorositySource &)=delete |
|
void | operator= (const interRegionExplicitPorositySource &)=delete |
|
virtual | ~interRegionExplicitPorositySource ()=default |
|
virtual void | addSup (fvMatrix< vector > &eqn, const label fieldi) |
|
virtual void | addSup (const volScalarField &rho, fvMatrix< vector > &eqn, const label fieldi) |
|
virtual bool | read (const dictionary &dict) |
|
| TypeName ("interRegionOption") |
|
| interRegionOption (const word &name, const word &modelType, const dictionary &dict, const fvMesh &mesh) |
|
| interRegionOption (const interRegionOption &)=delete |
|
void | operator= (const interRegionOption &)=delete |
|
virtual | ~interRegionOption ()=default |
|
const word & | nbrRegionName () const |
|
const meshToMesh & | meshInterp () const |
|
| TypeName ("option") |
|
| 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) |
|
autoPtr< option > | clone () const |
|
virtual | ~option ()=default |
|
const word & | name () const noexcept |
|
const fvMesh & | mesh () const noexcept |
|
const dictionary & | coeffs () const noexcept |
|
bool | active () const noexcept |
|
void | setApplied (const label fieldi) |
|
bool | active (const bool on) noexcept |
|
virtual bool | isActive () |
|
virtual label | applyToField (const word &fieldName) const |
|
virtual void | checkApplied () const |
|
virtual void | addSup (fvMatrix< scalar > &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< 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 |
|
virtual void | writeFooter (Ostream &) const |
|
virtual void | writeData (Ostream &) const |
|
Applies inter-region explicit porosity source.
- Usage
- Minimal example by using
constant/fvOptions
: interRegionExplicitPorositySource1
{
// Mandatory entries (unmodifiable)
type interRegionExplicitPorositySource;
interRegionExplicitPorositySourceCoeffs
{
// Mandatory entries (unmodifiable)
type <porosityModel>;
// Optional entries (runtime modifiable)
U U;
mu thermo:mu;
}
// Mandatory/Optional (inherited) entries
...
}
where the entries mean:
Property | Description | Type | Reqd | Dflt |
type | Type name: interRegionExplicitPorositySource | word | yes | - |
type | Name of porosity model | word | yes | - |
U | Name of operand velocity field | word | no | U |
mu | Name of operand dynamic viscosity field | word | no | thermo:mu |
The inherited entries are elaborated in:
Sources described by, for example using the DarcyForchheimer model:
interRegionExplicitPorositySourceCoeffs
{
type DarcyForchheimer;
DarcyForchheimerCoeffs
{
d d [0 -2 0 0 0 0 0] (5e7 -1000 -1000);
f f [0 -1 0 0 0 0 0] (0 0 0);
coordinateSystem
{
origin (0 0 0);
e1 (0.70710678 0.70710678 0);
e2 (0 0 1);
}
}
}
- Note
- The porous region must be selected as a cellZone.
- Source files
-
Definition at line 145 of file interRegionExplicitPorositySource.H.