[Cython] Adjust solver parameters for TestFlowReactor.test_reacting

This avoids CVODES failures that otherwise occur on some machines.
This commit is contained in:
Ray Speth 2013-02-15 18:20:00 +00:00
parent 59d8b75340
commit 61abf3869d

View file

@ -473,6 +473,7 @@ class TestFlowReactor(utilities.CanteraTest):
net.add_reactor(r)
net.atol = 1e-18
net.rtol = 1e-9
net.max_err_test_fails = 10
t = 0
self.assertNear(r.speed, 10 / r.density)