Hi,
I need to extract, from existing odb, displacements of nodes whhich belong to defined element surface. I use python. Till now I'm able to list the nodes labels and coordinates:
N_set = ODB1.rootAssembly.surfaces['C10'].nodes[0]
for i in N_set:
print i.label, i.coordinates
but trying:
reg = ODB1.rootAssembly.surfaces['C10']
nodes = ODB1.steps['CylFire_1'].frames[-1].fieldOutputs['COORD'].getSubset(region=reg)
for i in nodes.values:
print i.magnitude
does not work. Any suggestions would be appreciated.
regards,
Marek.