Hi Solal,
This floating point exception is triggered by the use of 0 as the value for one of the falloff coefficients in one reaction (CH3 + CH3 (+ M) [=] C2H6 (+ M)). The value is used in a term computed as
. Since
is always positive,
will evaluate to
and the term will evaluate to 0. This is a case where the floating point rules for division by zero give exactly the desired limiting behavior, and trapping floating point exceptions leads to false identification of an error.
Regards,
Ray