So it seems that there arent any strain values saved for unique node locations.
Can anyone confirm whether is is possible to request nodal strains from abaqus, or do I need to get the strain at the integration points and then convert that to unique nodal?
Thats essentially what I have so far,but I am having problems.
so far:
step1 = odb.steps['Step-1']
frame = step1.frames[-1]
strains = frame.fieldOutputs['E']
nodes = odb.rootAssembly.nodeSets['example_nodeset_name']
strain_at_nodes= strains.getSubset(region=nodes, position=NODAL)
How can I...
Hi,
I am relatively new to using python with Abaqus, typically I will use the CAE GUI.
I am doing a large number of models, and need to use scripting to output E33 strain at unique nodes along a line.
In each model, there is a nodeset that contains the nodes along the line, and this nodeset is...