From e21be9171b146c4bd5a968c0490bb14917e10e0b Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@uliege.be> Date: Sun, 9 Jul 2023 08:41:02 +0200 Subject: [PATCH] increase maxIter --- examples/helmholtzflow/nacelle3D/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/helmholtzflow/nacelle3D/main.cpp b/examples/helmholtzflow/nacelle3D/main.cpp index 999b1c19..ebb5badd 100644 --- a/examples/helmholtzflow/nacelle3D/main.cpp +++ b/examples/helmholtzflow/nacelle3D/main.cpp @@ -405,7 +405,7 @@ int main(int argc, char **argv) // Solve DDM double tolerence = 1e-6; - int maxIter = 1000; + int maxIter = 10000; formulation.pre(); formulation.solve("gmres", tolerence, maxIter, true); -- GitLab