24 lines
456 B
C++
24 lines
456 B
C++
|
Info<< "Reading chemistry properties\n" << endl;
|
||
|
|
||
|
IOdictionary chemistryProperties
|
||
|
(
|
||
|
IOobject
|
||
|
(
|
||
|
"chemistryProperties",
|
||
|
runTime.constant(),
|
||
|
mesh,
|
||
|
IOobject::MUST_READ,
|
||
|
IOobject::NO_WRITE,
|
||
|
false
|
||
|
)
|
||
|
);
|
||
|
|
||
|
Switch turbulentReaction(chemistryProperties.lookup("turbulentReaction"));
|
||
|
|
||
|
dimensionedScalar Cmix("Cmix", dimless, 1.0);
|
||
|
|
||
|
if (turbulentReaction)
|
||
|
{
|
||
|
chemistryProperties.lookup("Cmix") >> Cmix;
|
||
|
}
|