Hello,
I am trying to capture the throughput of a process where a robot picks the first part from two lanes and places into an available queue. Then, another robot inspects the product and places it back. The issue I have is -
1) The first robot needs to place this inspected product into a combiner. Instead, the robot picks another product waiting in queue. Do I need to use arrays to ensure the products are unique? (any example helps)
2) The picking robot needs to combine picking and dropping parts in the same cycle for efficiency. How can I ensure it can complete both tasks in the same cycle? my tasks differ based on product availability in queue, I am open to suggestions/ ideas on how to accomplish this.
3) I need to add a failure rate to the process. My plan was to add a dummy variable, assign a random value <100 and compare values above 25 to show 75% acceptance rate. Is there another recommendation?