[FEM] Elmer: use defaults of ElmerGUI

- use also for the linear solver the defaults of ElmerGUI
This commit is contained in:
Uwe
2022-08-07 16:19:20 +02:00
parent 753a034708
commit 460efa3a72

View File

@@ -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",