Arrival Sequence:
Items are sent to the combiner based on arrival sequence. First, 2 items (based on batch size) of type1 are sent to the combiner, are batched and sent to the first available W processor. Quantity column get updated to 4. The batch is then sent to the first available processor X, then to first available Y and to first available Z, and then to the sink. This process repeats until the quantity column for type1 reaches zero. Next, 5 items of type2 are sent to the combiner, are batched and sent to the first available processor W. Quantity column get updated to 3. The batch is then sent to X to Y to Z and sink. Since, for the next step to occur, 5 items of type2 are required for batching, but are not available (Quantity has only 3 items remaining), So only 3 items of type2 will be sent for batching. Quantity column gets updated to zero. Now, 6 items of type3 are sent to the combiner, are batched and sent to first available processor W. Quantity column get updated to 24. The batch is then sent to the upstream processors based on the sequence mentioned above. This process repeats until the quantity column for type3 reaches zero.
The processor processes one item at a time. The item is sent to the buffer of the upstream processor. The upstream processor waits for all the items to get queued, when the number of items in the queue
reaches the batch size, then the processing of the batch starts.
The processing time is same for all the parts. The setup times depend on the Low lot number. If low lot number is 1, the setup times are w=6,x=6,y=2,z=1. If low lot number is 0, then setup times w=2,x=2,y=2,z=1.