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:
- Returns:
Method Type: Core
Usage
calc_info = rfem_app.calculate_specific(
loadings=[
rfem.ObjectId(
no=2,
object_type=rfem.OBJECT_TYPE_LOAD_COMBINATION
)
],
skip_warnings=True
)
print(f"\nCalculation Info:\n{calc_info}")
var calcInfo = await RfemApp.calculate_specific(
loadings: new List<Rfem.ObjectId>
{
new Rfem.ObjectId{
No = 2,
ObjectType = Rfem.ObjectType.LoadCombination,
}
},
skipWarnings: true
);
Console.WriteLine($"\nCalculation Info:\n{calcInfo}");
Output
Calculation Info:
succeeded: true
data: ""
message: ""