FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

convergenceCheck.H

Go to the documentation of this file.
00001 // check convergence
00002 Info<< "maxResidual: " << maxResidual
00003     << "  convergence criterion: " << convergenceCriterion
00004     << endl;
00005 
00006 if (maxResidual < convergenceCriterion)
00007 {
00008     Info<< "reached convergence criterion: " << convergenceCriterion << endl;
00009     runTime.writeAndEnd();
00010     Info<< "latestTime = " << runTime.timeName() << endl;
00011 }
00012 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines