combustionModels::EDC: Fixed bug in specie consumption rate field

This commit is contained in:
Will Bainbridge
2023-02-01 12:22:25 +00:00
parent dc85d509b0
commit 56928e7ab2

View File

@ -201,7 +201,7 @@ void Foam::combustionModels::EDC::correct()
Foam::tmp<Foam::volScalarField::Internal>
Foam::combustionModels::EDC::R(const label speciei) const
{
return chemistryPtr_->RR()[speciei];
return kappa_*chemistryPtr_->RR()[speciei];
}