From 6326963e7c9947274e7399157e55d34d346a0814 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Wed, 14 Dec 2011 01:47:30 +0000 Subject: [PATCH] Allow T** in 4-term Troe expression to be negative Unlike the T* and T*** coefficients, T** appears in the numerator and does not cause any problems when its value is less than or equal to 0. --- Cantera/src/kinetics/FalloffFactory.cpp | 5 ----- 1 file changed, 5 deletions(-) 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]; }