access node labels of a node set
access node labels of a node set
(OP)
guys
if i have defined a set in my model, how do i access the node labels of the nodes belonging to that set through a python script when i access the odb file?
if i have defined a set in my model, how do i access the node labels of the nodes belonging to that set through a python script when i access the odb file?





RE: access node labels of a node set
lets say 'odb' is the ODB varible, which has an instance called 'PART-1-1', which in turn contains a nodeset called 'TEST', then the following code will give the label of the first entry in the set
odb.rootAssembly.instances['PART-1-1'].nodeSets['TEST'].nodes[0].label
Guru
www.abaqusguru.blogspot.com
RE: access node labels of a node set
you're very kind