BUG: functionObjectState required update when accessed via execFlowFunctionObjects- fixes #54

This commit is contained in:
Andrew Heather
2016-04-22 13:01:21 +01:00
parent a661bf281e
commit a592347b91
5 changed files with 97 additions and 66 deletions

View File

@ -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();