FEM: input filewriter base class, remove no longer working mesh shape property, has been replaced by part

This commit is contained in:
Bernd Hahnebach
2018-09-26 21:22:48 +02:00
committed by wmayer
parent f054788a9e
commit ac1b0371e1

View File

@@ -78,10 +78,7 @@ class FemInputWriter():
self.ccx_efaces = 'Efaces'
self.ccx_eedges = 'Eedges'
self.ccx_elsets = []
if hasattr(self.mesh_object, "Shape"):
self.theshape = self.mesh_object.Shape
elif hasattr(self.mesh_object, "Part"):
self.theshape = self.mesh_object.Part
self.theshape = self.mesh_object.Part
self.femmesh = self.mesh_object.FemMesh
self.femnodes_mesh = {}
self.femelement_table = {}