FEM: revert 4421020, 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 fdd4b9d00c
commit 2e19facb78

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 = {}