Hi all,
I'd like to retrieve all reaction forces of all present load combinations. Is there a filter_expression='CO' or something like str.contains() to retrieve the load combinations only?
The code im using:
support_forces = rfem_app.get_results(
results_type=rfem.results.ResultsType.STATIC_ANALYSIS_NODES_SUPPORT_FORCES,
filters=[
rfem.results.ResultsFilter(column_id='loading',filter_expression='CO1'),
rfem.results.ResultsFilter(column_id='node_no',filter_expression=str(xNode)),
],
support_coordinate_system=rfem.results.settings.CoordinateSystem.COORDINATE_SYSTEM_GLOBAL
)
If im using the text CO only, i still get the entire list of all cases.
Thanks in advance!