mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
11 lines
341 B
C
11 lines
341 B
C
const dictionary& pimple = mesh.solutionDict().subDict("PIMPLE");
|
|
|
|
const int nCorr =
|
|
pimple.lookupOrDefault<int>("nCorrectors", 1);
|
|
|
|
const int nNonOrthCorr =
|
|
pimple.lookupOrDefault<int>("nNonOrthogonalCorrectors", 0);
|
|
|
|
const bool momentumPredictor =
|
|
pimple.lookupOrDefault("momentumPredictor", true);
|