How to extract Creep Strain using Python in Mechanical?

Ayush Kumar
Member, Moderator, Employee Posts: 505
✭✭✭✭
Best Answer
-
analysis = Model.Analyses[0] reader = analysis.GetResultsData() reader.CurrentResultSet = 1 creep = reader.GetResult("EPCR") creep.SelectComponents(["X"]) print(creep.GetElementValues(6076))
0