STYLE: cylinderToCell : corrected message
[OpenFOAM-1.6.x.git] / applications / solvers / compressible / rhoCentralFoam / readThermophysicalProperties.H
blob435bcb7745e8c32b89a1c2991f6b0fd9192a42a5
1 Info<< "Reading thermophysicalProperties\n" << endl;
3 // Pr defined as a separate constant to enable calculation of k, currently
4 // inaccessible through thermo
5 IOdictionary thermophysicalProperties
7     IOobject
8     (
9         "thermophysicalProperties",
10         runTime.constant(),
11         mesh,
12         IOobject::MUST_READ,
13         IOobject::NO_WRITE
14     )
17 dimensionedScalar Pr = dimensionedScalar("Pr", dimless, 1.0);
19 if (thermophysicalProperties.found("Pr"))
21     Pr = thermophysicalProperties.lookup("Pr");