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

readPIMPLEControls.H

Go to the documentation of this file.
00001     dictionary pimple = mesh.solutionDict().subDict("PIMPLE");
00002 
00003     int nOuterCorr(readInt(pimple.lookup("nOuterCorrectors")));
00004     int nCorr(readInt(pimple.lookup("nCorrectors")));
00005 
00006     int nNonOrthCorr =
00007         pimple.lookupOrDefault<int>("nNonOrthogonalCorrectors", 0);
00008 
00009     bool momentumPredictor =
00010         pimple.lookupOrDefault<Switch>("momentumPredictor", true);
00011 
00012     bool transonic =
00013         pimple.lookupOrDefault<Switch>("transonic", false);
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines