[FEM] Elmer: fix default for heat

- revert change from comm it commit 117d789e - "None" is the correct default. (I mixed this up with Navier-Stokes)
This commit is contained in:
Uwe
2022-08-07 02:45:08 +02:00
parent 7ffbf56c4e
commit c4097ede8f
2 changed files with 2 additions and 2 deletions

View File

@@ -72,7 +72,7 @@ class Proxy(nonlinear.Proxy, equationbase.HeatProxy):
obj.Bubbles = True
obj.Stabilize = False
obj.Convection = CONVECTION_TYPE
obj.Convection = "Computed"
obj.Convection = "None"
obj.PhaseChangeModel = PHASE_CHANGE_MODEL
obj.PhaseChangeModel = "None"
obj.Priority = 20

View File

@@ -448,7 +448,7 @@ class Writer(object):
"Type of convection to be used"
)
equation.Convection = heat.CONVECTION_TYPE
equation.Convection = "Computed"
equation.Convection = "None"
if not hasattr(equation, "PhaseChangeModel"):
equation.addProperty(
"App::PropertyEnumeration",