question

Aldo G11 avatar image
0 Likes"
Aldo G11 asked Aldo G11 commented

Change Box When It's Empty and Place It On Empty Boxes Area

In my model I'm getting 2 boxes generated in a specific time of the day on the "Warehouse" queue; but when I got the 2 boxes on the "Picking" queue I don't want to get a third box, I want to replace one of the boxes placed on the "Picking" queue, taking one box of the "Picking" queue and placing it on the "Empty Equipment" queue, giving space for the future boxes coming from the "Warehouse" queue; so, it's there some function I can use for this kind of condition? Empty Equipment Test.fsm


FlexSim 22.0.1
queuetransporterboxesempty
· 4
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

Felix Möhlmann avatar image
1 Like"
Felix Möhlmann answered Aldo G11 commented

I customized the "Send to Port" logic of both the "Warehouse" and "Picking" queue to achieve this.

In the case of the "Picking" queue, the logic checks whether the sum of items currently in the queue plus incoming transports is larger than two. If that is the case, the item is released as normal (First Available), otherwise it is not released.

The "Warehouse" queue does the same check, though there the threshold is larger than one, because a new incoming transport is about to be added. If the total number of items in "Picking" plus incoming items and newly pending item is larger than two, the first item in "Picking" gets released.

I also set the transport task from "Picking" to be pre-empting, so it is always done before the new box from the warehouse queue is transported.

empty-equipment-test-fm.fsm


· 1
5 |100000

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