How I can get the first row of a path result. Supposed that the result is saved in stress, which is defined like this:
sol = Model.Analyses[0].Solution
stress = sol.AddMaximumPrincipalStress()
stress.ScopingMethod = GeometryDefineByType.Path
then I can access the data e.x with:
stress.PlotData.Values[3]
But the first three columns contain the coordinate, not what we see in Mechanical - the distances along the path. Thank you