question

mm_y_2406 avatar image
0 Likes"
mm_y_2406 asked Logan Gold commented

finding slot in the same type

using elevator to pick an item out_2.fsmI am trying to send items to the slot according to their type. For example, if the Level 1, Bay 1 is occupied with item labelled type 1, then the remaining items that enters the same bay and level should be the same type. however, if the the bay/level is empty, then any type can enter that row. Do you know how can I go around with this?

FlexSim 24.0.3
findslot
· 2
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 Felix Möhlmann commented

You will add a two step approach. Find a slot matching with Type and then if slot variable is stlll NULL then you choose a slot that does not contain any assigned slot item. There are several given answers here for each single condition alone. Please combine them yourself.

slot.slotItems[1].item.Type = $1.Type

Get matching label called Type on first slotItems item label and compare it with a passed external parameter assigned as item reference in special identifier $1 into the string query clause.

'$' keywords

https://docs.flexsim.com/en/24.0/Reference/CodingInFlexSim/FlexScriptAPIReference/Warehousing/Storage.System.html#Method-findSlot

in reference manual there is the label completely passed in and not just the item reference.

· 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.