FEM: revert ac1b037, it is based on a change which is not in master, not yet ;-)

This commit is contained in:
Bernd Hahnebach
2018-09-27 10:34:52 +02:00
committed by wmayer
parent 19cd040415
commit 13b45c9c79

View File

@@ -78,7 +78,10 @@ class FemInputWriter():
self.ccx_efaces = 'Efaces'
self.ccx_eedges = 'Eedges'
self.ccx_elsets = []
self.theshape = self.mesh_object.Part
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.femmesh = self.mesh_object.FemMesh
self.femnodes_mesh = {}
self.femelement_table = {}