changed error tolerance for time integration. The previous large value of atol was causing problems.

This commit is contained in:
Dave Goodwin 2005-09-15 03:40:47 +00:00
parent a6b65715d7
commit 7cb02cda46

View file

@ -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)