question

SudheerReddy avatar image
0 Likes"
SudheerReddy asked Jordan Johnson edited

Retrieval Items from Floor Storage

I am trying to fill the items in Floor Storage in blue arrow direction but I need to retrieve items from red arrow direction. How to achieve this?

I am attaching the model for reference

floorstorage.fsm

FlexSim 20.0.0
floor storage
fr.jpg (38.9 KiB)
floorstorage.fsm (39.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.

SudheerReddy avatar image SudheerReddy commented ·

@jordan.johnson Could you please have a look into this

0 Likes 0 ·
Jordan Johnson avatar image
1 Like"
Jordan Johnson answered Jordan Johnson edited

If you are using the storage object as an FR flow, then the task sequences will be sent to the operator in the order the items arrive.

I made two models. Both change the floor storage to push those task sequences to a list. The first uses the operator's OnResourceAvailable trigger to pull the task sequence from the list. However, this means that the operator chooses a task sequence when it is far away from the floor storage. One solution to this issue would be to use the OnUnload trigger as @Jörg Vogel suggests. My second uses a process flow to first have the operator travel to the floor storage, and then choose a task sequence.

Both models sort the list by age, so that the newest task sequence is chosen first.

floorstorage-list.fsm

floorstorage-list-pf.fsm


5 |100000

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

Joerg Vogel avatar image
1 Like"
Joerg Vogel answered

My approach pushes the transport tasksequences onto a tasksequence list. I add fields for the item in the transport tasksequence for the bay, level and rank of slot to the list:

for example expression field bay:

TaskSequence ts = value;
Storage.Item item = Storage.Item(ts.tasks[2].involved1);
return item.currentSlot.bayID;

Operator On Resource Available - Pull from List: I pull from the list ORDERED BY bay, level, rank DESC.

But this trigger fires right after unloading so I add another trigger to the operator to delay the On Resource Available. OnUnload I send the operator to the rack. Then he pulls from the list to get a new tasksequence to execute.

floor-storage-last-item-of-bay-level-rank.fsm


5 |100000

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

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

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