question

Lambert avatar image
0 Likes"
Lambert asked Felix Möhlmann commented

Items inside totes in a rack

Hi,

I have created a rack with 3 levels and 1 slot per bay, and then filled it with empty totes.

1728317756322.png


How can I get flow items inside those totes? How can I reference them in the rack?

Then, I would also like to pick the full totes (once they have reached a certain amount of items inside). How could I do this too?

Thank you

FlexSim 24.2.1
rack
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 commented

You can refer to the totes as subnodes of the rack. But that would be cumbersome for the purpose of assigning items to them. I'd push the totes to a list and assign items to them in a Process Flow. A simple example model is attached.

totes-in-rack-example.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.

Lambert avatar image Lambert commented ·

Thanks @Felix Möhlmann , that works perfectly.


One last question, how can I do to pick one tote at random from the list?

Right now I am using:

WHERE Type == puller.item.Type ORDER BY Type == puller.item.Type DESC

but this always pulls the same tote from the list until the tote is full.

I guess I need to change the ORDER BY clause, but I don't know how.


In other words, I would like to fill several totes with the same type at the same time (and not completely fill one tote for each type and then take another empty tote for that type).


Thanks again!



0 Likes 0 ·
Felix Möhlmann avatar image Felix Möhlmann Lambert commented ·

WHERE Type == 0 OR Type == puller.item.Type ORDER BY RAND()

0 Likes 0 ·