Occupancy rates calculation- Printable Version +- RoboDK Forum (//www.sinclairbody.com/forum) +-- Forum: RoboDK (EN) (//www.sinclairbody.com/forum/Forum-RoboDK-EN) + - - -论坛:通用RoboDK问题(//www.sinclairbody.com/forum/Forum-General-questions-about-RoboDK) +--- Thread: Occupancy rates calculation (/Thread-Occupancy-rates-calculation) |
Occupancy rates calculation-Hiroe-02-06-2023 Hello. Our customer would like to calculate the occupancy rates of robots/machines using RoboDK. As far as I know, RoboDK does not have such a feature but does anyone has the idea to realize it? As the attachment explains, they have multiple machines that they want to calculate the running time. Project to calculate occupancy rates w RoboDK .pdf(Size: 217.75 KB / Downloads: 87) RE: Occupancy rates calculation-Sergei-02-06-2023 Since RoboDK can work with Python scripts, you can program your process model on Python and integrate it into the RoboDK simulation process. RE: Occupancy rates calculation-Sam-02-07-2023 You can get an estimated cycle time for a Program using the API with program.Update(): //www.sinclairbody.com/doc/en/PythonAPI/robodk.html#robodk.robolink.Item.Update You can also determine if a robot is being use with robot.Busy(): //www.sinclairbody.com/doc/en/PythonAPI/robodk.html#robodk.robolink.Item.Busy From there, you can monitor your station through the API and find the occupancy rates. |