Hello Everyone,
I have one question about analysis of model.
I succeed to lauch stactic analysis with the following code :
calc_engine = project.CalcEngine
calc_engine.GenerateModel()
status = calc_engine.CalculateEx(IRobotCalculationMode.I_CM_LOCAL_ASYNCHRONOUS)
print(f"Calculation status returned: {status}")
I would do similar way to calculate reinforcement of shell and I tried the next code :
concrCalcEngine = project.ConcrReinfEngine
concrSlabRequiredReinfEngine = concrCalcEngine.SlabRequiredReinf
==> concrSlabRequiredReinfEngine.Calculate gives me "False"
When I go on Robot application I succeed to get results if I click on the follwing button :
Unfortunately It does not work.
I think I don't lauch a method to calculate (like CalculateEx) but I don't find it on API documentation.
Do you have any ideas ?
Regards,
Louis