question

Matthias avatar image
0 Likes"
Matthias asked Felix Möhlmann edited

The shortest path to pick up orders from Global Table using NetworkNode ?

Hi again,

I've finally made my model, but I have one more question.
Is there any possible way, to implement some logic to this very model, to make the Operator1 pick up the closest Flowitem(box) to him walking on NetworkNode ?

Right now there're 141 arrivals of different boxes with Type label (1-141) and they're randomly located in the warehouse. Racks output is Port By Case to the Combiner. Operator picks up orders according to rows in Global Table "Zamowienia"

If I make, for example - first order to pick up box number : 3,7,16 and 138 (I show it in the picture) the operator goes for boxes in this exact order, where it would be more effectively for him to pick it up in this order: 3,7,138 and 16 .

Could somebody tell me if it is possible? And if so, how?

warehouse_1.fsm

FlexSim 24.2.2
global tableorder pickingnetwork node
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
0 Likes"
Felix Möhlmann answered Felix Möhlmann edited

The fastest solution at this point would be to assign different priority values to the racks based on the sequence in which the picks should happen. Then edit the "Break To" code of the operator to check all pending task sequences and break to the one with the hightest priority.

warehouse-1-1.fsm

Other options would be:

Since the combiner will pull items through its inputs in ascending order, you could rearrange the port rankings to reflect the order in which the picks should be done. This would of course only work if all types of items are always available.

Or you use the addressing scheme to assing each rack different aisle/bay numbers. Then don't pass the task sequences directly to the operator but push them to a list instead. They can then be pulled in the 'correct' based on the aisle/bay of the involved item.


warehouse-1-1.fsm (231.3 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.