[FEM] Elmer: fix solver stabilize settings

- according to https://www.nic.funet.fi/index/elmer/doc/ElmerModelsManual.pdf
the stabilization methods are equation-specific and only available for some solvers
This commits changes these settings according to the manual
This commit is contained in:
Uwe
2022-08-03 02:32:01 +02:00
parent a6288fdabe
commit bbc21b336a
4 changed files with 27 additions and 21 deletions

View File

@@ -126,20 +126,6 @@ class Proxy(equation.Proxy):
)
# same as with LinearTolerance
obj.setExpression('SteadyStateTolerance', "1e-5")
obj.addProperty(
"App::PropertyBool",
"Stabilize",
"Base",
""
)
obj.Stabilize = True
obj.addProperty(
"App::PropertyBool",
"Bubbles",
"Base",
""
)
obj.Bubbles = False
class ViewProxy(equation.ViewProxy):