From 164afd9f60541cda55231ab7d12b611a06cef171 Mon Sep 17 00:00:00 2001 From: RemDelaporteMathurin Date: Mon, 6 Jan 2025 09:15:15 -0500 Subject: [PATCH] max its to 100 for W --- src/hisp/festim_models/mb_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hisp/festim_models/mb_model.py b/src/hisp/festim_models/mb_model.py index ece617c..617c25c 100644 --- a/src/hisp/festim_models/mb_model.py +++ b/src/hisp/festim_models/mb_model.py @@ -277,7 +277,7 @@ def make_W_mb_model( my_model.settings = F.Settings( atol=1e10, rtol=1e-10, - max_iterations=30, + max_iterations=100, # the first timestep needs about 66 iterations.... final_time=final_time, )