From 2bdb05698b8c90ea0825c54ee2116c63eb3263e0 Mon Sep 17 00:00:00 2001 From: Orestis Malaspinas <orestis.malaspinas@hesge.ch> Date: Tue, 24 Mar 2020 15:42:58 +0100 Subject: [PATCH] updated --- covid/python/seir.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/covid/python/seir.py b/covid/python/seir.py index bcb3847..a9d852f 100644 --- a/covid/python/seir.py +++ b/covid/python/seir.py @@ -39,8 +39,8 @@ S0 = N-E0-I0 t0 = 24 # max_t = 5*days[len(swiss)-1] -max_t = 2000 -n_steps = 100000 +max_t = 200.0 +n_steps = 10000 dt = max_t / n_steps y0 = np.array([S0, E0, I0, R0]) -- GitLab