BUG: ReversibleReaction::kr - replaced 1e-6 by VSMALL. Fixes #2704

This commit is contained in:
Andrew Heather 2023-05-30 11:53:47 +01:00
parent 868d6dd778
commit dcf005508b

View File

@ -128,7 +128,7 @@ Foam::scalar Foam::ReversibleReaction
const scalarField& c
) const
{
return kfwd/max(this->Kc(p, T), 1e-6);
return kfwd/max(this->Kc(p, T), VSMALL);
}