generate_mesh#

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

Generates mesh. Returns result of the operation.

Parameters:
  • skip_warnings (bool) – Specifies whether to skip warnings during the generation mesh.

  • model_id (dlubal.api.common.model_id_pb2.ModelId | None) – Unique identifier of the model.

Return type:

OperationResult

Active model is used if this field is not set.

Returns:

dlubal.api.common.common_messages_pb2.OperationResult

Parameters:
  • skip_warnings (bool)

  • model_id (ModelId | None)

Return type:

OperationResult


Example

rfem_app.generate_mesh(
    skip_warnings=True
)