BUG: Corrected pimple control stroring of prev iter

This commit is contained in:
andy
2011-09-09 10:02:24 +01:00
parent 612150de9c
commit 9eb1502555
2 changed files with 2 additions and 6 deletions

View File

@ -57,9 +57,9 @@ void Foam::solution::read(const dictionary& dict)
if (dict.found("relaxationFactors"))
{
const dictionary& relaxDict(dict.subDict("relaxationFactors"));
if (relaxDict.found("variables"))
if (relaxDict.found("fields"))
{
fieldRelaxDict_ = relaxDict.subDict("variables");
fieldRelaxDict_ = relaxDict.subDict("fields");
eqnRelaxDict_ = relaxDict.subDict("equations");
}
else

View File

@ -73,10 +73,6 @@ inline bool Foam::pimpleControl::loop()
if (nOuterCorr_ != 1)
{
Info<< algorithmName_ << ": iteration " << corr_ + 1 << endl;
}
if (corr_ != 0)
{
storePrevIterFields();
}