Skip to content

Commit

Permalink
remove special treatment of falloff #'s, resolves #404
Browse files Browse the repository at this point in the history
  • Loading branch information
skyreflectedinmirrors authored and speth committed Dec 7, 2016
1 parent 08b14b2 commit 84e6775
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions src/kinetics/Falloff.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,8 @@ void Troe::init(const vector_fp& c)
c.size());
}
m_a = c[0];
if (c[1] == 0.0) {
m_rt3 = 1000.;
} else {
m_rt3 = 1.0/c[1];
}
if (c[2] == 0.0) {
m_rt1 = 1000.;
} else {
m_rt1 = 1.0/c[2];
}
m_rt3 = 1.0/c[1];
m_rt1 = 1.0/c[2];
if (c.size() == 4) {
m_t2 = c[3];
}
Expand Down

0 comments on commit 84e6775

Please sign in to comment.