question

James H avatar image
0 Likes"
James H asked James Rodgers1 commented

Pick specific type of product from racks according to the order information

I have made a simulation model for manufacture plant that produce 50~60 types of product from 4 different machine then store them into the racks, but I'm stuck with the assign the transporter to pick up specific type of items by the order list. I had tried the process flow and many other methods but still not working properly. Is there any method that I could apply for this model to let transporter can look up the global list or table to pick up item from rack to place them into the trailer??


Current system 3_autosave.fsm

FlexSim 18.2.3
global tabletransporterorder pickingflexsim 18.2.3
· 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.

Jason Lightfoot avatar image Jason Lightfoot ♦ commented ·

Is this the only format you have for order data, or is there something with a better structure you might export from a database? For example:

0 Likes 0 ·
1614609394372.png (3.7 KiB)

1 Answer

·
James Rodgers1 avatar image
0 Likes"
James Rodgers1 answered James Rodgers1 commented

I think the easiest way to keep track of rack contents is to push them to a global list. In the attached model, the "Send To Port" on the racks places each item on a global "Inventory" list. The process flow, goes through the "Orders" table one row at a time and pulls off the order type and quantity. It then runs a subflow with a number of tokens equal to the number of items in the order. Each token pulls a matching inventory item (using a query) off the list. This gives a reference to the item to be picked up and saves it in the label "OrderItem". The "up" function tells us in which rack the item is located. A zone is used to have only one token at a time run through the subflow (if the forklift can load more than one item at a time, simply increase the capacity of the zone).

Basic Order Fulfilling.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.

Jason Lightfoot avatar image Jason Lightfoot ♦ commented ·

The Storage.System is designed to replace what you're describing.

0 Likes 0 ·
James Rodgers1 avatar image James Rodgers1 Jason Lightfoot ♦ commented ·

Perhaps, but they're using version 18.2.3.

1 Like 1 ·

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.