question

Vijay Sangrulkar avatar image
0 Likes"
Vijay Sangrulkar asked Jason Lightfoot edited

AGV Part Visualization issue

When AGV unload Part at destination - It shows gap like in the image. Any way to control this behavior....remaining parts shown come down after unloading previous parts.AGV01.PNG

FlexSim 23.1.1
resolve routeagv unloading
agv01.png (72.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.

Joerg Vogel avatar image Joerg Vogel commented ·
Yes, this is caused by unloading items, because their locations are set statically. If you want to set a new location, after you have unloaded some items of a stack, you have to do it yourself. You access each item by subnodes and then you can set a new location for z property.
0 Likes 0 ·

1 Answer

·
Jason Lightfoot avatar image
0 Likes"
Jason Lightfoot answered Jason Lightfoot edited

Here's the restack logic you can place on an unload trigger for a vertical stack:

Object item=current.first;
double z=0.3;
while (item){
    item.location.z=z;
    z+=item.size.z;
    item=item.next;
}
5 |100000

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

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.