31 template<
class ThermoType>
33 {
"ft",
"fu",
"bprog"};
38 template<
class ThermoType>
52 stoicRatio_(thermoDict.
lookup(
"stoichiometricAirFuelMassRatio")),
54 fuel_(thermoDict.
lookup(
"fuel")),
55 oxidant_(thermoDict.
lookup(
"oxidant")),
56 products_(thermoDict.
lookup(
"burntProducts")),
58 mixture_(
"mixture", fuel_),
68 template<
class ThermoType>
82 scalar pr = 1 - fu - ox;
84 mixture_ = fu/fuel_.W()*fuel_;
85 mixture_ += ox/oxidant_.W()*oxidant_;
86 mixture_ += pr/products_.W()*products_;
93 template<
class ThermoType>