@adevadkar
Hi,
the underlying reason for script thplot thickness result not working for Examine in 2025 is that nodal averaged is set to false.
Turning nodal averaged on for the plot, check it in plot properties and tab Optional Settings, Examine will work.
calc “Thickness:millimeter” “@diag:thck:0:3.5”
plot result has nodal averaged on by default, hence Examine works.
(Turning nodal averaged off, uncheck it in plot properties and tab Optional Settings - Examine will not work).
You could change this in thplot script where you have row (close to end of script):
Plot.SetNodalAveraging False
to
'Plot.SetNodalAveraging False ' * facetted - Examine does not work in 2025
Plot.SetNodalAveraging True ' * smooth - Examine works
I think it should be possible to Examine plot with nodal averaged turned off.
Have noticed Adsk tech support about this.
Hope this helps.
Regards,
Berndt
( If my comments are accepted, provide "Kudos" as appreciation. If your request is answered/resolved, please click the "Accept as Solution" button. Thanks.)