question

Alonso avatar image
0 Likes"
Alonso asked Alonso commented

supplying the line assembly with different quantities of products

Good morning, I have a question, whenever I use the AGV to unload boxes I use Label Color, but this means that each box has a corresponding color in a Queue to unload. However, in my model the production line only produces red products, so I must only deliver red products to different Queues. The problem is that I can't reference the quantities. For example, I load 3 sets of boxes containing 3 products in Queue 7 and 3 sets of boxes containing 6 products in Queue 8. The AGV must unload into each Queue a Tote produced in Queue 7 and a Tote produced in Queue 8. In my model it downloads everything to the first Queue. How do I reference unloading by different quantities? Another question, if I supply the line, should the list reference be different? I've recently been using FlexSim, so I'd appreciate anyone who can help with this question. Thanks.


Modelo_For.fsm

FlexSim 24.2.2
proces flow
modelo-for.fsm (102.0 KiB)
· 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.

Felix Möhlmann avatar image
1 Like"
Felix Möhlmann answered Alonso edited

You boxes are subnodes of the totes. You can access subnodes and read how many there are with code.

https://docs.flexsim.com/en/25.0/Reference/CodingInFlexSim/FlexScriptAPIReference/Tree/treenode.html#Property-subnodes

As such, you could write code that loops through all totes loaded by the AGV (which you have stored as the array "items" on the token or, again, as subnodes of the AGV) and decides which ones to unload. A simpler method is to push the loaded items to a list again and define a list expression that returns the number of subnodes/boxes. This can then be used in a pull query to get one tote with 3 and one tote with 6 items.

Instead of reading the number of subnodes, you could also set different label values on the totes and differentiate by those.

The logic that loads the boxes onto pallets uses the "Type" label. This did not exist on the boxes from the totes yet.

modelo-for_1.fsm


modelo-for-1.fsm (137.2 KiB)
· 20
5 |100000

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

Alonso avatar image
0 Likes"
Alonso answered Alonso commented

@Felix Möhlmann Good afternoon, one question, In the model, the AGV does the first loading of Queue 10 and Queue 9, these parts are unloaded in Queue15, with only 2 free places to accommodate Type1 and Type2 (TargetQuantity Array[6]: {2,2 ,0,0,0,0}, the AGV can then refuel in Queue11, with the Type3 item and unload in Queue16(Array[6]: {0,0,2,0,0,0} the last loading takes place in Queue 12, 13 and 14, where it is downloaded to Queue7A1 (Array[6]:{0,0,0,2,4,2}).

the AGV has a maximum capacity of 6 totes, and there is a consumption of parts with different times, the model presented is not loading the AGV. I made 6 Type sometimes it loads and unloads, but the shape is not correct, thank you for your help


Model_DemandA07.fsm


model-demanda07.fsm (62.2 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.

Alonso avatar image
0 Likes"
Alonso answered Alonso edited

One question about FlexSim, is there any reset logic by quantity? Imagine that the AGV leaves to unload, and in QueueA there is a quantity to unload, for example 8 spaces that can be loaded with pallets, the logic predicts that when the AGV arrives at that control point or deposit Queue it will be able to analyze the free quantities for the next round, bring the maximum number it has for that Queue, that is, if there are 3 places available, however for this Queue my AGV has reserved 2 pallets for this deposit per trip if it is loaded with the maximum number of pallets, which are 6, so it would only take 2 what is needed. Now if the AGV passes through other points and finds that only QueueA needs to load 3 spaces for 3 pallets, then instead of carrying 2 pallets it would take 3 pallets. This exists in FlexSim?

· 22
5 |100000

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

Alonso avatar image
0 Likes"
Alonso answered

I believe that the logic could be focused on pallets, so they do not need to be separated immediately, for example, after unloading the AGV's, the separator would only be able to process 1 pallet, so the supply queue would only accommodate the boxes on one pallet. In other words, I will have a waiting line at the processor limited to 3 pallets and when there is 2 or 1 pallet waiting for the processor, the AGV understands that it will only take what is left to complete the maximum number of capacity, which is 3 pallets. I don't know exactly how to apply logic like this that is based on line consumption and the AGV's maximum pallet loading capacity. AGVs move according to line consumption and to optimize deliveries. I don't know if there is an example similar to this on the forum that could help me, I appreciate any help.

5 |100000

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

Alonso avatar image
0 Likes"
Alonso answered

@Felix Möhlmann I am immensely grateful for the solution presented, it perfectly meets the demands of the factory where I work. One last question, I really have no idea where to put the "Event Triggered" function to apply the following logic, the AGV in the developed model, loads 9 pallets and unloads, imagine that the AGV only loads and unloads according to consumption. Imagine that on each trip the AGV only supplies the Queue that has a minimum quantity "X", for example, some Queue consume more than others. if I have 3 deliveries, but in Queue 1 and 2 more boxes are deposited and in Queue 3 and 4 and less are deposited. In other words, I wouldn't have space to deposit it in Queue 1e2, since consumption takes a long time due to the greater number of pieces, but Queue 3 e 4 has fewer pieces and is consumed faster. The idea is not to build up stock since I don't have unlimited physical space. Imagine that in this model developed by you, which is correct, the AGV makes trips according to consumption, if the line is slow it must remain stopped at a point waiting for consumption. Now, if at least one Queue needs to be filled, it can only take 2 pallets and only supply the Queue that has been consumed. I'm not sure if I managed to explain it correctly, but if there is a similar model on the forum I would be grateful. I don't know how to add events to apply this logic. The AGV can always bring any empty pallet, as long as it does not exceed its capacity of 9 pallets. I would really appreciate if you have any solutions for this logic. This is the real logic of AGVs in my work environment. Grateful.

5 |100000

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

Alonso avatar image
0 Likes"
Alonso answered Felix Möhlmann commented

Hello @Felix Möhlmann , Thank very much, I was able to put the logic to load the boxes on pallets using the "Type" label.

I still have a question, in my example I made a list for pallets so only 6 pallets are produced, the pallets must be reused and reprocessed, so I made an empty pallet after unloading the boxes for each Queue, to generate a reprocessing. However, when I connect the Queue that will receive this pallet for reprocessing, the system stops, so I left it without the pallet and combiner connection. The idea would be to have a pallet number no more than 6 and the combiner only works when a pallet is available. One problem is that when he deposits in Queue9, on the first trip he must carry up to two pallets if available if he does not move to the second Queue. I appreciate the help.



LZ_2.fsm


lz-2.fsm (124.0 KiB)
· 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.