1 if (chemistry.chemistry())
3 Info<< "Solving chemistry" << endl;
7 runTime.value() - runTime.deltaTValue(),
11 // turbulent time scale
12 if (turbulentReaction)
14 tmp<volScalarField> tepsilon(turbulence->epsilon());
15 const volScalarField& epsilon = tepsilon();
16 tmp<volScalarField> tmuEff(turbulence->muEff());
17 const volScalarField& muEff = tmuEff();
18 tmp<volScalarField> ttc(chemistry.tc());
19 const volScalarField& tc = ttc();
25 // Chalmers PaSR model
26 scalar tk = Cmix.value()*Foam::sqrt(muEff[i]/rho[i]/epsilon[i]);
28 (runTime.deltaTValue() + tc[i])
29 /(runTime.deltaTValue() + tc[i] + tk);
33 // Return to laminar combustion
43 chemistrySh = kappa*chemistry.Sh()();