Plotting Logarithmic Contours for Stress
Plotting Logarithmic Contours for Stress
(OP)
hello,
I am trying to save a stress contour animation using the same limits for each frame. However, the range of stresses is so large that nothing appears for most of the frames when I use the same limits. Is there a way to plot the scale in log form so that the contours are apparent for each frame.
thanks,
Chris
I am trying to save a stress contour animation using the same limits for each frame. However, the range of stresses is so large that nothing appears for most of the frames when I use the same limits. Is there a way to plot the scale in log form so that the contours are apparent for each frame.
thanks,
Chris





RE: Plotting Logarithmic Contours for Stress
corus
RE: Plotting Logarithmic Contours for Stress
RE: Plotting Logarithmic Contours for Stress
corus
RE: Plotting Logarithmic Contours for Stress
>>> from abaqus import session
>>> from abaqusConstants import *
>>> vp = session.viewports[session.currentViewportName]
>>> vp.odbDisplay.contourOptions.setValues(intervalType=LOG)
(... intervalType=UNIFORM is the other option)