From 460efa3a7292fa1a374a15f031bc7d1dfc6f1f4a Mon Sep 17 00:00:00 2001 From: Uwe Date: Sun, 7 Aug 2022 16:19:20 +0200 Subject: [PATCH] [FEM] Elmer: use defaults of ElmerGUI - use also for the linear solver the defaults of ElmerGUI --- src/Mod/Fem/femsolver/elmer/equations/linear.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Mod/Fem/femsolver/elmer/equations/linear.py b/src/Mod/Fem/femsolver/elmer/equations/linear.py index d19d621111..c4ec7eb72e 100644 --- a/src/Mod/Fem/femsolver/elmer/equations/linear.py +++ b/src/Mod/Fem/femsolver/elmer/equations/linear.py @@ -84,14 +84,14 @@ class Proxy(equation.Proxy): "" ) obj.LinearIterativeMethod = LINEAR_ITERATIVE - obj.LinearIterativeMethod = "BiCGStabl" + obj.LinearIterativeMethod = "BiCGStab" obj.addProperty( "App::PropertyInteger", "BiCGstablDegree", "Linear System", "" ) - obj.BiCGstablDegree = 3 + obj.BiCGstablDegree = 2 obj.addProperty( "App::PropertyEnumeration", "LinearPreconditioning", @@ -110,7 +110,7 @@ class Proxy(equation.Proxy): # view and edit the tolerance via the property editor and this does not # yet allow to view and edit small numbers in scientific notation # forum thread: https://forum.freecadweb.org/viewtopic.php?p=613897#p613897 - obj.setExpression("LinearTolerance", "1e-8") + obj.setExpression("LinearTolerance", "1e-10") obj.addProperty( "App::PropertyInteger", "LinearIterations",