How do I get analysis steps end times in Mechanical
Mike.Thompson
Member, Employee Posts: 366
✭✭✭✭
in Structures
You can do it in two ways:
`#Get step end times 2 ways
Analysis = Model.Analyses[0]
print Analysis.StepsEndTime
AS = Analysis.AnalysisSettings
EndTimes = [AS.GetStepEndTime(i) for i in range(1, AS.NumberOfSteps+1)]
print EndTimes`
Tagged:
0
Answers
-
See answer in body of post.
0