question

Maria A31 avatar image
0 Likes"
Maria A31 asked Jason Lightfoot edited

Problem in transporter

ReachTrucks.fsmHello. I am working on a model were a transporter (stacker) picks up a pallet from a Queue and creates an order. My problem is that the transporter only creates the first order and then it doenst continue to the next one. Can you please help me? Cause i have not found the error yet.



FlexSim 21.1.5
transporting
reachtrucks.fsm (844.7 KiB)
· 7
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 ·
I am altering this model and will post an updated version.
0 Likes 0 ·
Jason Lightfoot avatar image Jason Lightfoot ♦ commented ·
Can I ask is your operator meant to be picking boxes from the pallets the forklifts have pulled from rack or are you always processing whole pallets?
0 Likes 0 ·
Maria A31 avatar image Maria A31 Jason Lightfoot ♦ commented ·

Hey @Jason Lightfoot and thank you for responding so fast! The operator must process the whole pallet and that is why I have used the “token.pulled.up”

0 Likes 0 ·
Jason Lightfoot avatar image Jason Lightfoot ♦ Maria A31 commented ·
Then I don't see why you ever need to refer to the items and therefore don't need a list and can virtualize all the pallets make it fast compared to the version you posted.


What is the process meant to be? Is it just:
  1. The picks table defines the quantity of pallets by itemcode
  2. The forklifts bring the pallets for each order to the buffer
  3. The operator takes each pallet in an order somewhere (where?)


0 Likes 0 ·
Show more comments

1 Answer

·
Jason Lightfoot avatar image
0 Likes"
Jason Lightfoot answered Jason Lightfoot edited

Hi - I made several changes.

1. Speed up the drawing and inventory creation

  • Remove the list (we'll use the Storage System to find pallets instead of boxes).
  • Set the Storage System option to virtualize the objects for faster drawing
  • Add the Itemcode label to the storage system as indexed (for fast lookup).

2. Limit the picking of Pallets.

  • If we create all the pick jobs at once the items will all be unvirtualized and drawing will be slow.
  • Create 5 tokens to represent 5 orders and find the pallets for each (All Orders Processing)
  • Create a list of Buffers spaces and only create the pick job when there is a buffer space (Order Line Processing)

3. Have the Buffer handle events

  • At the model start, in its own Process Flow it pushes the spaces to a list
  • When an item enters the Buffer it pushes it to the Buffer Items list
  • When an items exists the Buffer it pushes a space back onto Buffer Spaces.

4. Have the operator process one order at a time

  • Use the same order number to read the itemcodes from the picking table.
  • Create an array of Itemcodes for use in the Pull Buffer Items so that you can say WHERE Itemcode IN puller.Itemcodes.
  • Remove a matching itemcode from the array when each item is pulled.

At the moment the model will stop because you're asking it to pick itemcodes for which you have no inventory (36)

Model attached.

reachtrucks_byPallet_jl.fsm


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

Maria A31 avatar image Maria A31 commented ·
@Jason Lightfoot Thank you so much, i can not describe how helpfull you've been! THanks again!!
0 Likes 0 ·

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.