How get the Results from Add-On Steel-Design and Stress-Strain-Analysis #360
Unanswered
tobiasneulichedl
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Hey, from RFEM.initModel import Model
from RFEM.Results.resultTables import ConvertResultsToListOfDct,GetMaxValue
Model(False, 'Demo1')
result = ConvertResultsToListOfDct(Model.clientModel.service.get_results_for_steel_design_design_ratios_members_by_design_situation())
max = GetMaxValue(result, 'design_ratio')
for item in result:
if item.get('design_ratio') == max:
maximum_utilised = item
print('Maximum utilized member : ', maximum_utilised['member'], ', Loading : ', maximum_utilised['loading'], ', Design ratio : ', maximum_utilised['design_ratio']) output:
You may store your required results as list or dictionary. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi!
I would like to get Results from the two Add-Ons Steel-Design and Stress-Strain-Analysis.
My goal is to run multiple very similar models after each other and safe only the most relevant results in an array.
The relevant results for me are:
I am already successfully extracting the max. force of a specific member for each file. I was wandering if I could get the desired results in a similar way.
Beta Was this translation helpful? Give feedback.
All reactions