[FEM] Elmer: allow lower relaxation factor

- despite the Elmer docs say 0.01 is the lover limit, for fluids like water, one might need down to 1e-4
This commit is contained in:
Uwe
2022-08-12 05:24:55 +02:00
parent f632712724
commit 9c68960a18

View File

@@ -83,7 +83,7 @@ class Proxy(linear.Proxy):
# forum thread: https://forum.freecadweb.org/viewtopic.php?p=613897#p613897
obj.setExpression("NonlinearTolerance", "1e-7")
obj.setExpression("NonlinearNewtonAfterTolerance", "1e-3")
obj.RelaxationFactor = (1.0, 0.01, 2.0, 0.1)
obj.RelaxationFactor = (1.0, 0.0001, 2.0, 0.1)
class ViewProxy(linear.ViewProxy):