calculate_all#
- dlubal.api.rfem.Application.calculate_all(self, *, skip_warnings, model_id=None)#
- Performs a full calculation for all objects. Returns result of the operation, description of the result and possibly additional information about an error. - Parameters:
- 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
calc_info = rfem_app.calculate_all(skip_warnings=True)
print(f"\nCalculation Info:\n{calc_info}")
var calcInfo = await RfemApp.calculate_all(skipWarnings: true);
Console.WriteLine($"\nCalculation Info:\n{calcInfo}");
Output
Calculation Info:
succeeded: true
data: ""
message: ""