I want to get the U2 displacement of a particular node using a python script :
dy = odb.steps['LoadingStep'].frames[-1].fieldOutputs['U'].values[node_no].data[1]
The problem is that the [value index] doesn't match the node number. Meaning that the output for the 10th node can't be found using values[10].
How can I get the displacement of a particular node?