This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/applications/solvers/multiphase/interDyMFoam/readControls.H

15 lines
371 B
C
Raw Normal View History

# include "readTimeControls.H"
2013-10-22 14:52:36 +00:00
# include "readPIMPLEControls.H"
bool correctPhi = true;
2013-10-22 14:52:36 +00:00
if (pimple.found("correctPhi"))
{
2013-10-22 14:52:36 +00:00
correctPhi = Switch(pimple.lookup("correctPhi"));
}
bool checkMeshCourantNo = false;
2013-10-22 14:52:36 +00:00
if (pimple.found("checkMeshCourantNo"))
{
2013-10-22 14:52:36 +00:00
checkMeshCourantNo = Switch(pimple.lookup("checkMeshCourantNo"));
}