How to extract Creep Strain using Python in Mechanical?
analysis = Model.Analyses[0] reader = analysis.GetResultsData() reader.CurrentResultSet = 1 creep = reader.GetResult("EPCR") creep.SelectComponents(["X"]) print(creep.GetElementValues(6076))
is there a way to do this in pyDPF? I need to extract creep strains for lots of elements across the full time history of my analysis, but am struggling to get pyDPF-core or -post to work for creep strain...
@KyleBenson unfortunately, it is not yet available via DPF, it is expected in the future release.