Executes system calls, entered in the form of a string list. More...
#include <systemCall/systemCall.H>
Executes system calls, entered in the form of a string list.
Definition at line 56 of file systemCall.H.
Public Member Functions | |
TypeName ("systemCall") | |
Runtime type information. | |
systemCall (const word &name, const objectRegistry &unused, const dictionary &, const bool loadFromFilesUnused=false) | |
Construct for given objectRegistry and dictionary. | |
virtual | ~systemCall () |
virtual const word & | name () const |
Return name of the system call set. | |
virtual void | read (const dictionary &) |
Read the system calls. | |
virtual void | execute () |
Execute the "executeCalls" at each time-step. | |
virtual void | end () |
Execute the "endCalls" at the final time-loop. | |
virtual void | write () |
Write, execute the "writeCalls". | |
virtual void | updateMesh (const mapPolyMesh &) |
Update for changes of mesh. | |
virtual void | movePoints (const pointField &) |
Update for changes of mesh. |
Protected Member Functions | |
systemCall (const systemCall &) | |
Disallow default bitwise copy construct. | |
void | operator= (const systemCall &) |
Disallow default bitwise assignment. |
Protected Attributes | |
word | name_ |
Name of this set of system calls. | |
stringList | executeCalls_ |
List of calls to execute - every step. | |
stringList | endCalls_ |
List of calls to execute when exiting the time-loop. | |
stringList | writeCalls_ |
List of calls to execute - write steps. |
|
protected |
Disallow default bitwise copy construct.
systemCall | ( | const word & | name, |
const objectRegistry & | unused, | ||
const dictionary & | dict, | ||
const bool | loadFromFilesUnused = false |
||
) |
Construct for given objectRegistry and dictionary.
Allow the possibility to load fields from files
Definition at line 41 of file systemCall.C.
|
virtual |
Definition at line 59 of file systemCall.C.
|
protected |
Disallow default bitwise assignment.
TypeName | ( | "systemCall" | ) |
Runtime type information.
|
inlinevirtual |
Return name of the system call set.
Definition at line 111 of file systemCall.H.
References systemCall::name_.
|
virtual |
Read the system calls.
Definition at line 65 of file systemCall.C.
References Foam::endl(), dictionary::readIfPresent(), and WarningIn.
|
virtual |
Execute the "executeCalls" at each time-step.
Definition at line 80 of file systemCall.C.
References forAll, and Foam::system().
|
virtual |
Execute the "endCalls" at the final time-loop.
Definition at line 89 of file systemCall.C.
References forAll, and Foam::system().
|
virtual |
Write, execute the "writeCalls".
Definition at line 98 of file systemCall.C.
References forAll, and Foam::system().
|
inlinevirtual |
Update for changes of mesh.
Definition at line 129 of file systemCall.H.
|
inlinevirtual |
Update for changes of mesh.
Definition at line 133 of file systemCall.H.
|
protected |
Name of this set of system calls.
Definition at line 63 of file systemCall.H.
Referenced by systemCall::name().
|
protected |
List of calls to execute - every step.
Definition at line 66 of file systemCall.H.
|
protected |
List of calls to execute when exiting the time-loop.
Definition at line 69 of file systemCall.H.
|
protected |
List of calls to execute - write steps.
Definition at line 72 of file systemCall.H.