Removed unneeded lib dependency from mdInitialise
[foam-extend-3.2.git] / applications / solvers / incompressible / icoDyMFoam / readControls.H
blob9336616a1bec863a01212696f321470026eeff91
1 #   include "readTimeControls.H"
2 #   include "readPISOControls.H"
4     bool correctPhi = false;
5     if (piso.found("correctPhi"))
6     {
7         correctPhi = Switch(piso.lookup("correctPhi"));
8     }
10     bool checkMeshCourantNo = false;
11     if (piso.found("checkMeshCourantNo"))
12     {
13         checkMeshCourantNo = Switch(piso.lookup("checkMeshCourantNo"));
14     }