How to extract Creep Strain using Python in Mechanical?

Ayush Kumar
Ayush Kumar Member, Moderator, Employee Posts: 505
100 Answers 250 Likes 100 Comments Second Anniversary
✭✭✭✭
edited June 4 in Structures

How to extract Creep Strain using Python in Mechanical?

Best Answer

  • Ayush Kumar
    Ayush Kumar Member, Moderator, Employee Posts: 505
    100 Answers 250 Likes 100 Comments Second Anniversary
    ✭✭✭✭
    Answer ✓
    analysis = Model.Analyses[0]
    reader = analysis.GetResultsData()
    reader.CurrentResultSet = 1
    creep = reader.GetResult("EPCR")
    creep.SelectComponents(["X"])
    print(creep.GetElementValues(6076))