question

Junyuan S avatar image
0 Likes"
Junyuan S asked Joseph Gillespie commented

Operator pick all orders at once

I want the operator to follow the path, pick 24 random items in total from different racks at once, and then send to the combiner. Right now, after it picked up the first item, it went to the combiner straightaway and requested to go back to the next rack. I don't need the operator to go back to the startpoint when the picking process is over.

Thanks anyone who could help in advance.

picking.fsm

Choose One
picking
picking.fsm (355.5 KiB)
· 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.

Joseph Gillespie avatar image Joseph Gillespie commented ·
@Junyuan S

When you say that you want the operator to pick up the 24 items "at once", do you want all 24 items to be teleported to the operator at the same moment, or do you mean simply that he should pick up all 24 items while on his way to the combiner?

0 Likes 0 ·
Junyuan S avatar image Junyuan S Joseph Gillespie commented ·

Hi @Joseph Gillespie,

Thanks for you response. I want the operator to pick up all 24 items while on his way to the combiner. Just like in Walmart, we shop for different items and then go to the checkout counter.

Hope this help

Best@Joseph Gillespie

0 Likes 0 ·
Joerg Vogel avatar image
1 Like"
Joerg Vogel answered Joseph Gillespie commented

The model looks good. There are some minor adjustment necessary. Very important is, that the pallet for the combiner is coming from input port 1

Also important is that the racks are allowed to release items. The Dwell Time function is not allowed to be set to "Do Not Release item". It is also necessary that items are available to fulfill the components list before the operator starts to collect the items. This is what @Aaron C said above.

The order of the component list defines the order of the input ports of the combiner. If you get an error that a destination isn't reachable, then the needed item wasn't available as the operator was at the network node which is connected to the rack or the racks' input port isn't at the right rank.

I attach an adjusted model variant of yours to show that the collecting works as intended.

picking-item-jv.fsm


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

Joerg Vogel avatar image Joerg Vogel commented ·

You can set the Dwell Time function to "Do Not Release item", but then you must be asolutely sure, that the items are released when the operator starts collecting the items of the combiner components list.

0 Likes 0 ·
Junyuan S avatar image Junyuan S Joerg Vogel commented ·

Thank you so much! Also, thanks to Aaron C for your help.

0 Likes 0 ·
Aaron C avatar image
0 Likes"
Aaron C answered

The problem is that as soon as that first item is created, the Dispatcher tells the Operator to deliver it to the combiner. This Task is created before the other objects are created (If you watch the Event List Viewer as you step through, you can see this happening). I would suggest restructuring and using Process Flow. You can push your items to a list and have the operator Pull, Load, and Unload all of the items at the Combiner.

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.