calculate_specific#

dlubal.api.rfem.Application.calculate_specific(self, *, loadings=None, skip_warnings, model_id=None)#

Performs a calculation for the specific objects. Returns result of the operation, description of the result and possibly additional information about an error.

Parameters:
  • loadings (list[ObjectId] | None) – Unique identifier of the loading.

  • skip_warnings (bool) – Specifies whether to skip warnings during the calculation.

  • model_id (ModelId | None) – Unique identifier of the model. Active model is used if this field is not set.

Returns:

OperationResult


Usage

rfem_app.calculate_specific(
    loadings=[
        rfem.ObjectId(
            no=2,
            object_type=rfem.OBJECT_TYPE_LOAD_COMBINATION
        )
    ],
    skip_warnings=True
)