Skip to content
Snippets Groups Projects
Commit 6c26474c authored by sergio's avatar sergio
Browse files

ENH: Add functionality to singleStepReactingMixture

parent cedfb1b2
Branches
Tags
No related merge requests found
......@@ -108,6 +108,8 @@ void Foam::singleStepReactingMixture<ThermoType>::calculateMaxProducts()
Yprod0_[specieI] = this->speciesData()[specieI].W()/Wm*Xi[i];
}
Info << "Maximum products mass concentrations :" << Yprod0_<< endl;
// Normalize the stoichiometric coeff to mass
forAll(specieStoichCoeffs_, i)
{
......
......@@ -152,6 +152,9 @@ public:
//- Return the list to indicate if specie is produced/consumed
inline const List<int>& specieProd() const;
//- Return the list of products mass concentrations
inline const scalarList& Yprod0() const;
// I-O
......
......@@ -94,4 +94,12 @@ Foam::singleStepReactingMixture<ThermoType>::specieProd() const
}
template<class ThermoType>
inline const Foam::scalarList&
Foam::singleStepReactingMixture<ThermoType>::Yprod0() const
{
return Yprod0_;
}
// ************************************************************************* //
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment