calculate_specific#
- dlubal.api.rstab.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:
Usage
rstab_app.calculate_specific(
loadings=[
rstab.ObjectId(
no=2,
object_type=rstab.OBJECT_TYPE_LOAD_COMBINATION
)
],
skip_warnings=True
)
await RstabApp.calculate_specific(
loadings: new List<Rstab.ObjectId>
{
new Rstab.ObjectId{
ObjectType = Rstab.ObjectType.ResultCombination,
No = 1
}
},
skipWarnings: false
);