question

Jun Woo K avatar image
0 Likes"
Jun Woo K asked Jun Woo K commented

Load/Unload after AGV redirect

Hello, I have a question about my example model related with AGV.

Example_afterRedirect.fsm


[1] The following figure shows a screenshot of my model.

fig1-overallmodel.png

Source1 generates flowitems, which will be transferred to Queue1. The AGV (TaskExecuter1) tranasports the flowitems from Queue1 to Queue2.

The AGV moves along the AGV path, which contains 4 control points, ControlPoint1 (front), ControlPoint2 (left), ControlPoint3 (back), and ControlPoint4 (right). In above Figure, the AGV is connected to CotrolPoint1 (front).

The ControlPoints are connected by "NextWorkPoint" connections, however, ControlPoint4 (right) and ControlPoint1 (front) are not connected to each other. In other words, the ControlPoints do not form a complete loop in my model.


[2] I am using "Basic AGV" template of FlexSim 2021 update1 to implement AGV logics for my model. I modify the template slightly as shown in the following Figure, where "TE1 Logic" block is the only part that I added to "Basic AGV" template.

The role of "TE1 Logic" block is to move AGV from ControlPoint4 (right) to ControlPoint1. Note that these 2 ControlPoints are not connected.

fig2-overallpf.png


[3] The "TE1 Logic" block in above Process Flow contains a Custom Code activity, and its script is shown in the following Figure. We can see AGV.redirect() command is used to move the AGV.

fig3-customcode.png


[4] When I start the model, the AGV cycles the path iteratively. So, I think the "TE1 Logic" block works well, at least partly. However, I found that the AGV does not load flowitems from Queue1 at all. In other words, my AGV pass ControlPoint2 (left) without loading, even if one or more flowitems exist in Queue1 object.

Could you please let me know what is missing in my model and how to make my AGV to load flowitems from Queue1?


Thanks in advance.






FlexSim 21.1.5
agvtransportationagv redirect
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

·
Felix Möhlmann avatar image
0 Likes"
Felix Möhlmann answered Jun Woo K commented

You would have to use "REDIRECT_AS_FINAL" when redirecting the agv. Otherwise it is stuck in the same travel task indefinitely (arrive at cp4 -> get redirected to cp1 -> continue to cp4 -> ...)

This still doesn't seem like a good solution, since the agv will always be redirected, even if it wants to unload something at cp4. Instead you could interject the main loop directly when the agv is at cp4.

1643976500158.png

1643976557559.png

1643976572059.png

I'm also interested to know: Why can't you simply connect cp4 to cp1, if the functionality you seem to target is exactly the same?

example-afterredirect_1.fsm


· 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.

Jun Woo K avatar image Jun Woo K commented ·
Thanks a lot, Felix. Your advice is helpful to understand more about AGV redirection. I am preparing for modeling of an AGV system, characterized by (i) branching points on the AGV paths and (ii) intermittent transportation tasks (i.e. AGVs do not move continuously). I am going over a couple of approaches including AGV redirection.
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.