Skip to content
Snippets Groups Projects
Commit 1618f764 authored by andy's avatar andy
Browse files

ENH: Better output for singleStepReactingMixture products

parent 8b8af1ba
No related merge requests found
......@@ -108,7 +108,14 @@ void Foam::singleStepReactingMixture<ThermoType>::calculateMaxProducts()
Yprod0_[specieI] = this->speciesData()[specieI].W()/Wm*Xi[i];
}
Info << "Maximum products mass concentrations :" << Yprod0_<< endl;
Info << "Maximum products mass concentrations:" << nl;
forAll(Yprod0_, i)
{
if (Yprod0_[i] > 0)
{
Info<< " " << this->species()[i] << ": " << Yprod0_[i] << nl;
}
}
// Normalize the stoichiometric coeff to mass
forAll(specieStoichCoeffs_, i)
......
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