FEM: elmer equations, delete wrong tool tips
This commit is contained in:
@@ -48,37 +48,37 @@ class Proxy(linear.Proxy, equationbase.ElasticityProxy):
|
||||
"App::PropertyBool",
|
||||
"DoFrequencyAnalysis",
|
||||
"Elasticity",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.addProperty(
|
||||
"App::PropertyInteger",
|
||||
"EigenmodesCount",
|
||||
"Elasticity",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.addProperty(
|
||||
"App::PropertyBool",
|
||||
"CalculateStrains",
|
||||
"Elasticity",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.addProperty(
|
||||
"App::PropertyBool",
|
||||
"CalculateStresses",
|
||||
"Elasticity",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.addProperty(
|
||||
"App::PropertyBool",
|
||||
"CalculatePrincipal",
|
||||
"Elasticity",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.addProperty(
|
||||
"App::PropertyBool",
|
||||
"CalculatePangle",
|
||||
"Elasticity",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.EigenmodesCount = 5
|
||||
obj.Priority = 10
|
||||
|
||||
@@ -48,38 +48,38 @@ class Proxy(linear.Proxy, equationbase.ElectrostaticProxy):
|
||||
"App::PropertyBool",
|
||||
"CalculateElectricField",
|
||||
"Electrostatic",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.addProperty(
|
||||
"App::PropertyBool",
|
||||
"CalculateElectricFlux",
|
||||
"Electrostatic",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.addProperty(
|
||||
"App::PropertyBool",
|
||||
"CalculateElectricEnergy",
|
||||
"Electrostatic",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.addProperty(
|
||||
"App::PropertyBool",
|
||||
"CalculateSurfaceCharge",
|
||||
"Electrostatic",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.addProperty(
|
||||
"App::PropertyBool",
|
||||
"CalculateCapacitanceMatrix",
|
||||
"Electrostatic",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
"""
|
||||
obj.addProperty(
|
||||
"App::PropertyInteger",
|
||||
"CapacitanceBodies",
|
||||
"Electrostatic",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
"""
|
||||
|
||||
|
||||
@@ -45,7 +45,7 @@ class Proxy(equationbase.BaseProxy):
|
||||
"App::PropertyInteger",
|
||||
"Priority",
|
||||
"Base",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
|
||||
|
||||
|
||||
@@ -49,7 +49,7 @@ class Proxy(linear.Proxy, equationbase.FluxProxy):
|
||||
"App::PropertyBool",
|
||||
"CalculateFlux",
|
||||
"Flux",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.addProperty(
|
||||
"App::PropertyString",
|
||||
|
||||
@@ -66,7 +66,7 @@ class Proxy(equation.Proxy):
|
||||
"App::PropertyEnumeration",
|
||||
"LinearSolverType",
|
||||
"Linear System",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.LinearSolverType = LINEAR_SOLVER
|
||||
obj.LinearSolverType = "Iterative"
|
||||
@@ -74,14 +74,14 @@ class Proxy(equation.Proxy):
|
||||
"App::PropertyEnumeration",
|
||||
"LinearDirectMethod",
|
||||
"Linear System",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.LinearDirectMethod = LINEAR_DIRECT
|
||||
obj.addProperty(
|
||||
"App::PropertyEnumeration",
|
||||
"LinearIterativeMethod",
|
||||
"Linear System",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.LinearIterativeMethod = LINEAR_ITERATIVE
|
||||
obj.LinearIterativeMethod = "BiCGStab"
|
||||
@@ -89,13 +89,13 @@ class Proxy(equation.Proxy):
|
||||
"App::PropertyInteger",
|
||||
"BiCGstablDegree",
|
||||
"Linear System",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.addProperty(
|
||||
"App::PropertyEnumeration",
|
||||
"LinearPreconditioning",
|
||||
"Linear System",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.LinearPreconditioning = LINEAR_PRECONDITIONING
|
||||
obj.LinearPreconditioning = "ILU0"
|
||||
@@ -103,35 +103,35 @@ class Proxy(equation.Proxy):
|
||||
"App::PropertyFloat",
|
||||
"LinearTolerance",
|
||||
"Linear System",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.LinearTolerance = 1e-8
|
||||
obj.addProperty(
|
||||
"App::PropertyInteger",
|
||||
"LinearIterations",
|
||||
"Linear System",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.LinearIterations = 500
|
||||
obj.addProperty(
|
||||
"App::PropertyFloat",
|
||||
"SteadyStateTolerance",
|
||||
"Steady State",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.SteadyStateTolerance = 1e-5
|
||||
obj.addProperty(
|
||||
"App::PropertyBool",
|
||||
"Stabilize",
|
||||
"Base",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.Stabilize = True
|
||||
obj.addProperty(
|
||||
"App::PropertyBool",
|
||||
"Bubbles",
|
||||
"Base",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.Bubbles = False
|
||||
|
||||
|
||||
@@ -44,31 +44,31 @@ class Proxy(linear.Proxy):
|
||||
"App::PropertyFloat",
|
||||
"NonlinearTolerance",
|
||||
"Nonlinear System",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.addProperty(
|
||||
"App::PropertyInteger",
|
||||
"NonlinearIterations",
|
||||
"Nonlinear System",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.addProperty(
|
||||
"App::PropertyFloat",
|
||||
"RelaxationFactor",
|
||||
"Nonlinear System",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.addProperty(
|
||||
"App::PropertyInteger",
|
||||
"NonlinearNewtonAfterIterations",
|
||||
"Nonlinear System",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.addProperty(
|
||||
"App::PropertyFloat",
|
||||
"NonlinearNewtonAfterTolerance",
|
||||
"Nonlinear System",
|
||||
"Select type of solver for linear system"
|
||||
""
|
||||
)
|
||||
obj.NonlinearTolerance = 1e-8
|
||||
obj.NonlinearIterations = 500
|
||||
|
||||
Reference in New Issue
Block a user