Hi everybody,
I would like to extract the creep strain of a .rst result File via the ansys-dpf-core python module.
The code that i execute is:
model = dpf.Model(rst_file) # loading the rst file
print(model.metadata.result_info) # here the output of the print statement shows that the creep_strain is available. It says "creep_strain: ElementalNodal Creep Strain" under Available results.
model.results.creep_strain()
Then i get the error:
Traceback (most recent call last):
File "C:\stuff\Projekte\testing\creep_strain_load.py", line 14, in
creep = model.results.creep_strain()
AttributeError: 'CommonResults' object has no attribute 'creep_strain'