From 7cb02cda46fe25a8c9e481dd1e23c715469f2224 Mon Sep 17 00:00:00 2001 From: Dave Goodwin Date: Thu, 15 Sep 2005 03:40:47 +0000 Subject: [PATCH] changed error tolerance for time integration. The previous large value of atol was causing problems. --- Cantera/python/examples/flames/adiabatic_flame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cantera/python/examples/flames/adiabatic_flame.py b/Cantera/python/examples/flames/adiabatic_flame.py index 850728b07..2778e8018 100644 --- a/Cantera/python/examples/flames/adiabatic_flame.py +++ b/Cantera/python/examples/flames/adiabatic_flame.py @@ -20,7 +20,7 @@ initial_grid = [0.0, 0.001, 0.01, 0.02, 0.029, 0.03] # m tol_ss = [1.0e-5, 1.0e-9] # [rtol atol] for steady-state # problem -tol_ts = [1.0e-5, 1.0e-4] # [rtol atol] for time stepping +tol_ts = [1.0e-5, 1.0e-9] # [rtol atol] for time stepping loglevel = 1 # amount of diagnostic output (0 # to 5)