DrBwts
Mechanical
- Nov 4, 2012
- 297
I'm trying to extract views of a large number of *.odbs.
I ran through a test case manually then checked the abaqus.rpy file to find that I needed the following objects & methods,
But when I try to use,
I get the following error,
AttributeError:'OdbDisplay' object has no attribute 'displayGroup'
So what gives here? Is it just that some methods are not made public?
I ran through a test case manually then checked the abaqus.rpy file to find that I needed the following objects & methods,
Python:
leaf = dgo.LeafFromElementSets(elementSets=('MODEL-1.EVERYTHINGELSE', ))
session.viewports['Viewport: 1'].odbDisplay.displayGroup.remove(leaf=leaf)
But when I try to use,
Python:
session.viewports['Viewport: 1'].odbDisplay.displayGroup.remove(leaf=leaf)
I get the following error,
AttributeError:'OdbDisplay' object has no attribute 'displayGroup'
So what gives here? Is it just that some methods are not made public?