plausibility_check#
- dlubal.api.rfem.Application.plausibility_check(self, *, type, skip_warnings, model_id=None)#
Performs validation based on the specified validation type. Returns result of the operation, description of the result and possibly additional information about an error.
- Parameters:
type (PlausibilityCheckType) – Specifies various validation checks that can be performed before generating a mesh, running a calculation, or verifying plausibility.
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:
Method Type: Core
Usage
plausibility = rfem_app.plausibility_check(
type=common.PLAUSIBILITY_CHECK_PLAUSIBILITY_CHECK,
skip_warnings=True
)
print(f"\nPlausibility:\n{plausibility}")
var plausibility = await RfemApp.plausibility_check(
type: Common.PlausibilityCheckType.PlausibilityCheckPlausibilityCheck,
skipWarnings: true
);
Console.WriteLine($"\nPlausibility:\n{plausibility}");
Output
Plausibility:
succeeded: true
data: ""
message: ""