|
| | TypeName ("add") |
| | Runtime type information. More...
|
| |
| | add (const word &name, const Time &runTime, const dictionary &dict) |
| | Construct from Time and dictionary. More...
|
| |
| virtual | ~add () |
| | Destructor. More...
|
| |
| template<class GeoFieldType > |
| Foam::tmp< GeoFieldType > | calcFieldType () const |
| |
| | TypeName ("fieldsExpression") |
| | Runtime type information. More...
|
| |
| | fieldsExpression (const word &name, const Time &runTime, const dictionary &dict, const wordList &fieldNames=wordList::null(), const word &resultName=word::null) |
| | Construct from Time and dictionary. More...
|
| |
| virtual | ~fieldsExpression () |
| | Destructor. More...
|
| |
| virtual bool | read (const dictionary &) |
| | Read the fieldsExpression data. More...
|
| |
| virtual bool | execute () |
| | Calculate the result fields. More...
|
| |
| virtual bool | write () |
| | Write the result fields. More...
|
| |
| virtual bool | clear () |
| | Clear the result fields from the objectRegistry. More...
|
| |
| | TypeName ("fvMeshFunctionObject") |
| | Runtime type information. More...
|
| |
| | fvMeshFunctionObject (const word &name, const Time &runTime, const dictionary &dict) |
| | Construct from Time and dictionary. More...
|
| |
| | fvMeshFunctionObject (const word &name, const objectRegistry &obr, const dictionary &dict) |
| | Construct from the region objectRegistry and dictionary. More...
|
| |
| virtual | ~fvMeshFunctionObject () |
| | Destructor. More...
|
| |
| | TypeName ("regionFunctionObject") |
| | Runtime type information. More...
|
| |
| | regionFunctionObject (const word &name, const Time &runTime, const dictionary &dict) |
| | Construct from Time and dictionary. More...
|
| |
| | regionFunctionObject (const word &name, const objectRegistry &obr, const dictionary &dict) |
| | Construct from the region objectRegistry and dictionary. More...
|
| |
| virtual | ~regionFunctionObject () |
| | Destructor. More...
|
| |
| virtual const word & | type () const =0 |
| | Runtime type information. More...
|
| |
| | declareRunTimeSelectionTable (autoPtr, functionObject, dictionary,(const word &name, const Time &runTime, const dictionary &dict),(name, runTime, dict)) |
| |
| | functionObject (const word &name) |
| | Construct from components. More...
|
| |
| autoPtr< functionObject > | clone () const |
| | Return clone. More...
|
| |
| virtual | ~functionObject () |
| | Destructor. More...
|
| |
| const word & | name () const |
| | Return the name of this functionObject. More...
|
| |
| virtual bool | end () |
| | Called when Time::run() determines that the time-loop exits. More...
|
| |
| virtual bool | adjustTimeStep () |
| | Called at the end of Time::adjustDeltaT() if adjustTime is true. More...
|
| |
| virtual void | updateMesh (const mapPolyMesh &mpm) |
| | Update for changes of mesh. More...
|
| |
| virtual void | movePoints (const polyMesh &mesh) |
| | Update for changes of mesh. More...
|
| |
Add a list of fields.
The operation can be applied to any volume or surface fields generating a volume or surface scalar field.
Example of function object specification:
Ttot
{
type add;
libs ("libfieldFunctionObjects.so");
fields (T Tdelta);
result Ttot;
executeControl writeTime;
writeControl writeTime;
}
- See also
- Foam::functionObjects::fieldsExpression Foam::functionObjects::fvMeshFunctionObject
- Source files
-
Definition at line 73 of file add.H.