Filter Mechanical results in ACT
Ansys Staff
Member, Employee Posts: 24
✭✭✭✭
All,
I have to code a sequence where the results shall be filtered by a certain threshold. In this example equivalent stress >= 500 MPa, just like shown in the following image. Does someone know how this can be achieved?
Tagged:
0
Answers
-
here are the code lines :
graphics = ExtAPI.DataModel.InternalObject["ds"].Graphics graphics.ResultPrefs.typeDisplay = 2 graphics.ResultPrefs.cappedIsoSurfaceStyle = 0; graphics.ResultPrefs.cappedIsoSurfaceValue = 500; graphics.Refresh()
It's using the jscript API.
0