AGVs loading with bad references to items

michael_kramer1
Not applicable
0 Views
2 Replies
Message 1 of 3

AGVs loading with bad references to items

michael_kramer1
Not applicable

[ FlexSim 16.1.0 ]

In my model I didn't realize that two AGVs are dispatched to the same pickup and the dispatching is messed up. The second AGV to arrive wants to pickup a non-existent item. Would you be able to help fix that? Sorry, my process flow expertise is on a very novice level right now.

(Another question related to this model found here).

Accepted solutions (1)
1 View
2 Replies
Replies (2)
Message 2 of 3

sam_stubbs
Not applicable
Accepted solution

So I fixed your logic on the dispatching of the trucks. What had happened was that you have two process flow tokens representing the two items being produced. But because there are two, when they hit the "Acquire" activity, both are calling to dispatch the trucks, so it sends two trucks. One solution is to use a "Batch" activity. This can combine any number of tokens into one token. So I "Batched" The two items together.

962-added-batch.png

Additionally I noticed that your "Change Visual" activity for the AGV was only referencing one specific AGV, so I changed it to look for whichever AGV was currently loading by referencing the Resource label.

961-923-agv-index-and-load-jn1.fsm

Message 3 of 3

anthony_johnsonT83CM
Autodesk
Autodesk

Sam's answer works, but also, just as advice I would suggest instead of using the decide/delay loop that waits until there are two items in the queue, you can just wait for the item to enter the queue using a wait for event.

1014-twoitemloadwaitforentry.png

You just have to make sure that you match the Entering Item with the token's item label.

1015-matchitemlabel.png

This means that it will wait until the item referenced by the token's item label enters the queue.

961-923-agv-index-and-load-jn1-wait-for-entry.fsm