turbulenceModel: Correct handling of IOdictionary writing to support timeStampMaster

This commit is contained in:
Henry
2015-02-10 17:32:27 +00:00
parent 46f16ecb80
commit 732cd3883f
2 changed files with 1 additions and 7 deletions

View File

@ -56,7 +56,7 @@ OptimisationSwitches
// - inotify : use inotify framework // - inotify : use inotify framework
// - timeStampMaster : do time stamp (and file reading) only on master. // - timeStampMaster : do time stamp (and file reading) only on master.
// - inotifyMaster : do inotify (and file reading) only on master. // - inotifyMaster : do inotify (and file reading) only on master.
fileModificationChecking timeStamp; fileModificationChecking timeStampMaster;
commsType nonBlocking; //scheduled; //blocking; commsType nonBlocking; //scheduled; //blocking;
floatTransfer 0; floatTransfer 0;

View File

@ -207,12 +207,6 @@ public:
//- Solve the turbulence equations and correct the turbulence viscosity //- Solve the turbulence equations and correct the turbulence viscosity
virtual void correct() = 0; virtual void correct() = 0;
//- Default dummy write function
virtual bool writeData(Ostream&) const
{
return true;
}
}; };