How i can make my Queue pull Items, taking as a reference and excel schedule?

How i can make my Queue pull Items, taking as a reference and excel schedule?

alex_ch
Not applicable
615 Views
4 Replies
Message 1 of 5

How i can make my Queue pull Items, taking as a reference and excel schedule?

alex_ch
Not applicable

[ FlexSim 17.0.4 ]

I want that one of the queue in my project, get items from other queues, by taking as reference the schedule I have in excel...

The shedule look like this..

IDMODEL
1BLUE
2YELLOW
3YELLOW
4RED
5BLUE

So, before the main queue, I have another 3 queue's where they have an stock of items of each model.

QUEUE 1 = BLUE

QUEUE 2 = YELLOW

QUEUE 3 = RED

QUEUE 4 = SCHEDULE PULL ITEM'S (EXCEL REFERENCE)

IDMODELGET FROM
1BLUEQUEUE 1
2 YELLOWQUEUE 2
3YELLOWQUEUE 2
4REDQUEUE 3
5BLUEQUEUE1

I want this using excel because its an schedule of 504 items, so it's more easy to work with (I think) (I already know how to charge excel sheets to flexsim)

So it's posiible to do something like this? }

Thanks in advice.

0 Likes
Accepted solutions (1)
616 Views
4 Replies
Replies (4)
Message 2 of 5

kari_payton
Not applicable
Accepted solution

@Alex Gf If you are familiar with process flow, you can setup a flow for the main queue to pull specific items from a list.

1- Create a label on the source that reads tableRow = 1 & tableColumn = 2. This will read the cell from the table to reference what queue to pull from.

6367-capturehelp2.png

2- Create a label to reference the number from the table

3- Pull that object from the list using the label you created as the partitionID (i.e. the reference to the queue).

4- Increment the tableRow value by 1 and loop.

This will create a loop through all of the rows on the table until the label "tableRow" > the number of rows int he table.

Also in order for this to work, you need to push the items to the list from the queue and push items with partitionID = to their queue number. I.E. Blue items come from Queue 1 so partitionID=1.

Sketch of what the process flow could look like:

6366-capturehelp.png

It would help too if you post your model or an example.

Message 3 of 5

alex_ch
Not applicable

Hi Kari, I just saw his answer and I think this could fix the problem, can you share with me the model to have a better understand of what you said. Thankss

0 Likes
Message 4 of 5

tanmay_varshney
Not applicable

trial.fsm@Kari Payton can you help me how to increment the table rows in a process flow,
I have to similarly work in my model , I have 4 staging queue which will pull items with ref of table in sequence. No order has to be repeated, it has to be taken up queue as per its empty availability

0 Likes
Message 5 of 5

kari_payton
Not applicable

9100-trial-1.fsm Notes in model process flow. @Trex