14 lines
372 B
C
14 lines
372 B
C
# include "readTimeControls.H"
|
|
# include "readPIMPLEControls.H"
|
|
|
|
bool correctPhi = false;
|
|
if (pimple.found("correctPhi"))
|
|
{
|
|
correctPhi = Switch(pimple.lookup("correctPhi"));
|
|
}
|
|
|
|
bool checkMeshCourantNo = false;
|
|
if (pimple.found("checkMeshCourantNo"))
|
|
{
|
|
checkMeshCourantNo = Switch(pimple.lookup("checkMeshCourantNo"));
|
|
}
|