|
| TypeName ("multiRegion") |
|
| multiRegion (const word &name, const Time &runTime, const dictionary &dict) |
|
virtual | ~multiRegion ()=default |
|
virtual bool | read (const dictionary &dict) |
|
virtual bool | execute () |
|
virtual bool | write () |
|
| timeFunctionObject (const word &name, const Time &runTime) |
|
virtual | ~timeFunctionObject ()=default |
|
const Time & | time () const |
|
objectRegistry & | storedObjects () |
|
const objectRegistry & | storedObjects () const |
|
| declareRunTimeSelectionTable (autoPtr, functionObject, dictionary,(const word &name, const Time &runTime, const dictionary &dict),(name, runTime, dict)) |
|
| functionObject (const word &name, const bool withNamePrefix=defaultUseNamePrefix) |
|
autoPtr< functionObject > | clone () const |
|
virtual | ~functionObject ()=default |
|
virtual const word & | type () const =0 |
|
const word & | name () const noexcept |
|
bool | useNamePrefix () const noexcept |
|
bool | useNamePrefix (bool on) noexcept |
|
virtual bool | execute (const label subIndex) |
|
virtual bool | end () |
|
virtual bool | adjustTimeStep () |
|
virtual bool | filesModified () const |
|
virtual void | updateMesh (const mapPolyMesh &mpm) |
|
virtual void | movePoints (const polyMesh &mesh) |
|
Wrapper that clones the supplied function object for each region.
Simplifies the setup of identical post-processing requirements for multi-region cases. Applies the supplied function to all regions by default.
- Usage
- Minimal example by using
system/controlDict.functions
: multiRegion
{
// Mandatory entries
type multiRegion;
libs (utilityFunctionObjects);
function
{
// Actual object specification
type fieldMinMax;
libs (fieldFunctionObjects);
fields (<field1> ... <fieldN>);
}
// Optional entries
regions (region1 region2);
}
where the entries mean:
Property | Description | Type | Reqd | Deflt |
type | Type name: multiRegion | word | yes | - |
libs | Library name: utilityFunctionObjects | word | yes | - |
function | Function object sub-dictionary | dict | yes | - |
regions | List of region names | wordList | no | all |
- See also
-
- Source files
-
Definition at line 119 of file multiRegion.H.