Taylor W
Geotechnical
- Feb 7, 2023
- 14
Hello all,
I'm trying to find a way to get the Mises stress and temperature at nodes on an edge using a script. I've created an assembly set at that edge, and here's roughly what I'm currently doing:
o1 = session.openOdb(name='myODB.odb')
resultsSet = o1.rootAssembly.nodeSets['Set-1']
temps = o1.steps['Step-1'].frames[-1].fieldOutputs['TEMP']
resultsSetTemps = temps.getSubset(region=resultsSet)
print wellBottomTemp.values
However, with stresses and temperatures, it just prints an empty list. What am I doing wrong?
I'm trying to find a way to get the Mises stress and temperature at nodes on an edge using a script. I've created an assembly set at that edge, and here's roughly what I'm currently doing:
o1 = session.openOdb(name='myODB.odb')
resultsSet = o1.rootAssembly.nodeSets['Set-1']
temps = o1.steps['Step-1'].frames[-1].fieldOutputs['TEMP']
resultsSetTemps = temps.getSubset(region=resultsSet)
print wellBottomTemp.values
However, with stresses and temperatures, it just prints an empty list. What am I doing wrong?