question

Ruben Mariduena avatar image
0 Likes"
Ruben Mariduena asked Ruben Mariduena commented

How to make flowitems wait in the queue until all the flowitems that will be part of that order have been created?

This is for a shipping scenario. There is a cargo ready schedule that shows the dates the cargo items are ready to ship, along with their corresponding information (GlobalTable1). Every time a cargo is ready at the queue it can be transported to the inspection area and then to the shipping dock where it can be loaded to a TE. The only condition for this to happen is that orders can only leave the queue if all the cargo items that are part of that order are in succession. To give an example (please see global table in the model): Order 1 has two cargo items and they are ready one after the other. This means that as soon as cargo 1 is ready it can leave and the same thing for the cargo 2. Now for Order 2, 2 cargo items are in succession but then there's a cargo item from order 3 that is going to be ready before the last cargo item from order 2. This means that all items from order 2 have to wait until the last cargo item from that order is ready before the can leave the queue (same for order 3). Items are only transported one at a time and cannot be batched (they are large items) . Any suggestions on how to approach this issue?

sample.fsm

FlexSim 16.2.0
schedulewait queue
sample.fsm (21.7 KiB)
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

Joerg Vogel avatar image
0 Likes"
Joerg Vogel answered Ruben Mariduena commented

Classic 3D model. You could hold the items in the queue. In the OnEntry trigger of the queue and you compare all stored items in the queue if they belong to your batch. If all have entered you write a loop wherein you release all items of the batch.

holditem is flexscript function, you can use also the picklist item Do Not Release Item in Send To Port under Flow.

releaseitem is the other function. You must explicitly put a port into the function, otherwise the Send To function is executed again, which could lead to a not wished behaviour: the items stay in the queue.

· 3
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.