FEM: examples, remove z88 solver from not supported examples

This commit is contained in:
Bernd Hahnebach
2020-07-09 19:46:10 +02:00
parent 0869621707
commit bf98467c50
2 changed files with 2 additions and 4 deletions

View File

@@ -48,7 +48,7 @@ def get_information():
"meshtype": "solid",
"meshelement": "Tet10",
"constraints": ["fixed", "force", "pressure"],
"solvers": ["calculix", "z88", "elmer"],
"solvers": ["calculix", "elmer"],
"material": "solid",
"equation": "mechanical"
}
@@ -126,8 +126,6 @@ def setup(doc=None, solvertype="ccxtools"):
ObjectsFem.makeSolverElmer(doc, "SolverElmer")
)[0]
ObjectsFem.makeEquationElasticity(doc, solver_object)
elif solvertype == "z88":
analysis.addObject(ObjectsFem.makeSolverZ88(doc, "SolverZ88"))
else:
FreeCAD.Console.PrintWarning(
"Not known or not supported solver type: {}. "

View File

@@ -49,7 +49,7 @@ def get_information():
"meshtype": "solid",
"meshelement": "Tet10",
"constraints": ["fixed", "displacement"],
"solvers": ["calculix", "z88", "elmer"],
"solvers": ["calculix", "elmer"],
"material": "solid",
"equation": "mechanical"
}