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.

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.