question

Milosz S2 avatar image
0 Likes"
Milosz S2 asked Milosz S2 commented

Why my "Find slot" isn't working

Hi, I have problem with my model. On 3000 s some ASRS vehicles start to put pallets from racks on the conveyor. When pallet reach conveyor end, it has to be put back on rack with another ASRS. I set the "Find Slot" for empty slot and some other queries, but it doesn't listen to this and put all pallets on the same slot. Where may be the problem?

Query on "Find Slot": WHERE slot.slotItems.length == 0 AND product == $1.pallet.Product AND slot.zoneID == "3" AND slot.aisleID == "3"

MODEL2.fsm

1649710129295.png

FlexSim 20.0.10
queryproces flowfindslot
1649710129295.png (44.6 KiB)
model2.fsm (285.2 KiB)
· 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.

1 Answer

Felix Möhlmann avatar image
1 Like"
Felix Möhlmann answered Milosz S2 commented

You are not assigning the found slot to the pallet. So when the pallet enters the rack, the Slot Assignment Strategy of the rack is used, which puts the pallet into the first slot that has space (items on the pallet don't count for determining the space the pallets needs/takes up).

1649743591681.png

The label "item" doesn't exist on the token. This should read "token.pallet" to assign the found slot.


1649743591681.png (19.7 KiB)
· 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.