Retrieving support forces of Load Combinations only

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!

Hi IJGlinka,

first of all, welcome to the community :tada: !

You can create a list of all wanted combinations:
filters=[
RFEM.results.ResultsFilter(column_id='loading', filter_expression='CO1,CO2,CO3'),
]

An example is shown in the documentation of the API (gRPC).

Wildcards like 'CO*' or 'CO?' are not supported yet, but may be implemented in a future version. We already have it on our list for future development (RUS ID 4837).

Best regards
Robert Milrath