mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: Pimple corrector loop counter not re-initialised on criteria satisfied - mantis #371
This commit is contained in:
@ -196,9 +196,10 @@ bool Foam::pimpleControl::loop()
|
||||
bool completed = false;
|
||||
if (criteriaSatisfied())
|
||||
{
|
||||
Info<< algorithmName_ << ": converged in " << corr_ << " iterations"
|
||||
Info<< algorithmName_ << ": converged in " << corr_ - 1 << " iterations"
|
||||
<< endl;
|
||||
completed = true;
|
||||
corr_ = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user