question

kyriakos avatar image
0 Likes"
kyriakos asked kyriakos commented

The operators doesn't pick the correct quantity in all Types

Good evening to everyone. In the attached model I build the following logic. Three Operators create 3 orders. Each one has a dedicated Gravity Storage Rack and its own PickingList. But there's a problem.

For example when the operator1 makes the order2 (pallet appearing at the 20th second) I put 10 pieces of Type 100 and 10 pieces of Type 105. The result is not correct because he takes 10 pieces of Type 100 and only 2 pieces of Type 105. I can't find the cause of this malfunction. I would appreaciate any help !

Thanks in advance.

zone-picking-2.fsm

FlexSim 19.2.3
picking zone
zone-picking-2.fsm (115.6 KiB)
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

·
Matt Long avatar image
0 Likes"
Matt Long answered kyriakos commented

It looks like the picking data is being stored on the label order_list on the parent token, but the child tokens are using data from the PickingListOperator1 table instead of the label table.

You'll have to reference the order_list label using token.labels["order_list"].as(Table) as token.order_list will just return the value of that node.

Also it looks like in Run Sub Flow - Order_list LOAD activity, you assign the child token the order_list label, which removes the ability for the child tokens to read the label table off of their parent without saying token.parent.labels["order_list"]


table.png (21.6 KiB)
· 3
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

kyriakos avatar image kyriakos commented ·

@Matt Long . Thanks for your advice. I understand that the mistake is that I use the global table PickingListOperator1 in the process of picking. I should use the labels of order_list. I tried to fix it but with no result. I always take false in the syntax.

0 Likes 0 ·
Matt Long avatar image Matt Long kyriakos commented ·

Here's your updated model with the above changes.

zone-picking-2.fsm

0 Likes 0 ·
zone-picking-2.fsm (113.7 KiB)
kyriakos avatar image kyriakos commented ·

@Matt Long Thank you very much. I was making a mistake in the order of the commands.

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.