question

Fernanda Becker avatar image
0 Likes"
Fernanda Becker asked Adrian Haws edited

refilling the racks

I explain some of the background for my simulation model in this previous question.

Once all the departments receive the maximum content of each product (10 of each one), these units start being consumed, because the source of "Demand" starts as well. The problem is that they are consumed, but the racks aren't refilling the products, even if there are available units of the required SKU in the central warehouse.

Do you know how can I fix it, in order to make the racks refill the products that are missing (what means, quantity < 10)?

My model is attached.

Thank you again!! Best regards,

FlexSim 16.2.0
rackwarehousepull strategy
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

·
Adrian Haws avatar image
1 Like"
Adrian Haws answered Adrian Haws edited

Fernanda,

I've taken a look at your model and ultimately found a simple solution. The reason the items weren't going to the racks after the initial stocking was because that's how the logic was set up. There was code that told the rack whether or not it could pull that item, and once that code was executed the item was never again reevaluated. Also, the "for" loops going through each item in each rack every time an object entered was slowing down the model.

An easier way to accomplish this logic is with Process Flow. I've set it up so that the objects don't get sent to a rack until there is an "opening" for an item with that SKU. I've attached the updated model but I'll try to explain this clearly:

When an object arrives at the queue, a token is created in the Process Flow and given a label called "item". There are also labels set on the token denoting its SKU and the Department it should be sent to. Then they can enter a "Zone". The Zone is partitioned for each SKU with a constraint of 10 for each one. That way no more than 10 tokens of each SKU can be in the Zone at a time. If a token is allowed to enter the zone, it then moves the flowitem to its corresponding rack.

The way for objects to be sent to a rack when there is space available also involves the zone, as well as a list. After an object is moved to a rack, its "sku" label is pushed and partitioned on a global list. Each combiner then pull the specific sku that it pulled from the rack (using the partition ID), allowing the token to continue through the Process Flow. The token then leaves the zone, letting a token with its specific SKU to then enter the zone and be sent to the correct rack.

Even for those with little to no knowledge of Process Flow, this logic shouldn't be too complicated to follow. There is essentially no logic for the item flow from the queue to the racks contained in the 3D model-it's all in the Process Flow and global list.

I hope this is helpful. Let me know if you have any questions.


modeloteste-2.fsm (49.2 KiB)
· 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.

Fernanda Becker avatar image Fernanda Becker commented ·

Thank you very, very much @Adrian Haws It was really helpful! I'm now working on this last version of the model, and in case of further doubts, I'll open a new post here. Thank you!!

1 Like 1 ·
Joerg Vogel avatar image Joerg Vogel commented ·

@Adrian Haws How can you initiate to reevaluate a tested item again? Is it simply to set the "Reevaluate Sendto on Downstream Availablity" to active, because the "Reevaluate Pull Requirement on All Items When Each Upstream Item is Released" is missing since Flexsim 7. The Last version I have installed and found this Option is Flexsim 5.

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.