ENH: functionObjects: force writing when used through execFlowFunctionObjects

This commit is contained in:
mattijs
2010-10-26 16:23:36 +01:00
parent 3a2822ece1
commit 797c4a7457
7 changed files with 18 additions and 12 deletions

View File

@ -68,13 +68,13 @@ namespace Foam
functionObjectList fol(runTime, dict);
fol.start();
fol.execute();
fol.execute(true); // override outputControl - force writing
}
else
{
functionObjectList fol(runTime);
fol.start();
fol.execute();
fol.execute(true); // override outputControl - force writing
}
}
}