diff --git a/Cantera/src/kinetics/FalloffFactory.cpp b/Cantera/src/kinetics/FalloffFactory.cpp index fa3f41cf0..23c9b8799 100644 --- a/Cantera/src/kinetics/FalloffFactory.cpp +++ b/Cantera/src/kinetics/FalloffFactory.cpp @@ -210,8 +210,6 @@ namespace Cantera { * T_1 is required to greater than or equal to zero. If it is zero, * then the term is set to zero. * - * T_2 is required to be greater than zero. - * * @ingroup falloffGroup */ class Troe4 : public Falloff { @@ -249,9 +247,6 @@ namespace Cantera { } else { m_rt1 = 1.0/c[2]; } - if (c[3] < 0.0) { - throw CanteraError("Troe4::init()", "T2 parameter is less than zero"); - } m_t2 = c[3]; }