ReversibleReaction: Corrected test

Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1804
This commit is contained in:
Henry Weller
2015-08-01 15:40:52 +01:00
parent 7be9bb61e6
commit d022214d87

View File

@ -146,7 +146,7 @@ Foam::scalar Foam::ReversibleReaction
{
scalar Kc = this->Kc(p, T);
if (mag(Kc > VSMALL))
if (mag(Kc) > VSMALL)
{
return kfwd/Kc;
}