ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / applications / solvers / lagrangian / LTSReactingParcelFoam / readChemistryProperties.H
blobe742e9fea78c2d196b07e96196b20ea8a2cf53f1
1 // Info<< "Reading chemistry properties\n" << endl;
3 IOdictionary chemistryProperties
5     IOobject
6     (
7         "chemistryProperties",
8         runTime.constant(),
9         mesh,
10         IOobject::MUST_READ_IF_MODIFIED,
11         IOobject::NO_WRITE,
12         false
13     )
16 Switch turbulentReaction(chemistryProperties.lookup("turbulentReaction"));
18 dimensionedScalar Cmix("Cmix", dimless, 1.0);
20 if (turbulentReaction)
22     chemistryProperties.lookup("Cmix") >> Cmix;