Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Field output object not iterable

Status
Not open for further replies.

Aravindkj

Bioengineer
Joined
Jun 15, 2014
Messages
25
Location
SG
Hi guys,
I tried the follwing code and tried to read eseden from a nodeset. I get the following error as "Type error Field output object is not iterable"
It will be rally helpful if you guys can give me some suggestions on how to fix this.
Thank you
Aravind

from odbAccess import *
from textRepr import *
from abaqusConstants import *
import odbAccess
odb=openOdb(path='python2d.odb')

NodesofInterest = odb.rootAssembly.instances['PART-1-1'].nodeSets['NODESET']

eseden=odb.steps['Step-1'].frames[1].fieldOutputs['ESEDEN'].getSubset(region=NodesofInterest)

for v in eseden:
#print v
print (v.elementLabel,v.data)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top