[FEM] Flow constraints: fix wrong tooltips

This commit is contained in:
Uwe
2022-08-13 03:35:22 +02:00
parent 4962c3da15
commit 5a72f2d1fa
2 changed files with 13 additions and 13 deletions

View File

@@ -43,41 +43,41 @@ class ConstraintFlowVelocity(base_fempythonobject.BaseFemPythonObject):
"App::PropertyFloat",
"VelocityX",
"Parameter",
"Body heat flux"
"Velocity in x-direction"
)
obj.addProperty(
"App::PropertyBool",
"VelocityXEnabled",
"Parameter",
"Body heat flux"
"Use velocity in x-direction"
)
obj.addProperty(
"App::PropertyFloat",
"VelocityY",
"Parameter",
"Body heat flux"
"Velocity in y-direction"
)
obj.addProperty(
"App::PropertyBool",
"VelocityYEnabled",
"Parameter",
"Body heat flux"
"Use velocity in y-direction"
)
obj.addProperty(
"App::PropertyFloat",
"VelocityZ",
"Parameter",
"Body heat flux"
"Velocity in z-direction"
)
obj.addProperty(
"App::PropertyBool",
"VelocityZEnabled",
"Parameter",
"Body heat flux"
"Use velocity in z-direction"
)
obj.addProperty(
"App::PropertyBool",
"NormalToBoundary",
"Parameter",
"Body heat flux"
"Flow is in normal direction"
)

View File

@@ -43,35 +43,35 @@ class ConstraintInitialFlowVelocity(base_fempythonobject.BaseFemPythonObject):
"App::PropertyFloat",
"VelocityX",
"Parameter",
"Body heat flux"
"Velocity in x-direction"
)
obj.addProperty(
"App::PropertyBool",
"VelocityXEnabled",
"Parameter",
"Body heat flux"
"Use velocity in x-direction"
)
obj.addProperty(
"App::PropertyFloat",
"VelocityY",
"Parameter",
"Body heat flux"
"Velocity in y-direction"
)
obj.addProperty(
"App::PropertyBool",
"VelocityYEnabled",
"Parameter",
"Body heat flux"
"Use velocity in y-direction"
)
obj.addProperty(
"App::PropertyFloat",
"VelocityZ",
"Parameter",
"Body heat flux"
"Velocity in z-direction"
)
obj.addProperty(
"App::PropertyBool",
"VelocityZEnabled",
"Parameter",
"Body heat flux"
"Use velocity in z-direction"
)