I have a number of stations, each stations will be located a machine and need a worker to operate some operations and produce items, operations are precedent: example: Stations:
- A[ Operation1[Worker1] ]
- B[ Operation3[Worker1, Worker2] ]
- C[ Operation4[Worker2] ] Worker can jump between some stations to operate and produce production, the rule is Create 3 outputs of the first operation then move to the second one. And an item must finish the Operation1 then go to Operation2 then go to Operation3 Each operation needs a certain amount of time to finish. Operation1,2,3 needs 3,1,2 mins in order.
I want to simulate the way to produce 100 pcs.
Example to solve the problem
Here is one way to do it with processes