mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: functionObjectState required update when accessed via execFlowFunctionObjects- fixes #54
This commit is contained in:
@ -143,11 +143,14 @@ public:
|
||||
//- Access to the functionObjects
|
||||
using PtrList<functionObject>::operator[];
|
||||
|
||||
//- Reset/read state dictionary for current time
|
||||
virtual void resetState();
|
||||
|
||||
//- Return the state dictionary
|
||||
IOdictionary& stateDict();
|
||||
virtual IOdictionary& stateDict();
|
||||
|
||||
//- Return const access to the state dictionary
|
||||
const IOdictionary& stateDict() const;
|
||||
virtual const IOdictionary& stateDict() const;
|
||||
|
||||
//- Clear the list of function objects
|
||||
virtual void clear();
|
||||
@ -164,7 +167,6 @@ public:
|
||||
//- Return the execution status (on/off) of the function objects
|
||||
virtual bool status() const;
|
||||
|
||||
|
||||
//- Called at the start of the time-loop
|
||||
virtual bool start();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user