Carousel machine

Carousel machine

Kauan
Not applicable
1,329 Views
5 Replies
Message 1 of 6

Carousel machine

Kauan
Not applicable

[ FlexSim 21.2.4 ]

I have a problem where I want the pallets to keep turning forever and the boxes go in and out but on the exit the pallet and the box are exiting together.

65173-1678110597280.pnggif carousel.gif

65183-1678110793172.pngCarrousel.fsm

0 Likes
Accepted solutions (1)
1,330 Views
5 Replies
Replies (5)
Message 2 of 6

FelixMoehlmann
Collaborator
Collaborator
Accepted solution

You have placed an Exit Transfer that moves items to the exit conveyor. Remove it if they should continue on forever.

You are also not setting the itemtype anywhere, so your condition to move the box will never be true. The usage of the deprecated "itemtype" property is also discouraged in favor of using labels.

0 Likes
Message 3 of 6

Kauan
Not applicable

Olá @Felix Möhlmann

Thanks for replying, I did what you went through for labels but to no avail.

Carrousel.fsm

0 Likes
Message 4 of 6

FelixMoehlmann
Collaborator
Collaborator

I meant that you should use a label in the custom code to detect whether to move the item or not.

1678127668753.png

0 Likes
Message 5 of 6

kauanpedroso180
Explorer
Explorer

What if the situation were reversed? For example, in this scenario, the incoming parts form a bottleneck while waiting for the pallet to be available to combine.

Captura de tela 2026-06-02 082628.png

 

What if the situation were reversed? For example, if the output station is the bottleneck, and as long as there's a part at the station, the entire carousel stops because it can't unload. The way it is right now, it just releases all the parts without checking if the conveyor is full. Can you help me with this, @FelixMoehlmann ?

kauanpedroso180_0-1780401402831.png

 

 

0 Likes
Message 6 of 6

FelixMoehlmann
Collaborator
Collaborator

If there is a backlog on the input conveyor then the loop would need to be faster or have a higher pallet density. Logic wise I don't see an issue with the items bunching up.

To control the output and stop the loop until the item could be moved to the output conveyor I would use a small Process Flow. When a pallet with an item arrives at the DP, all conveyors in the loop get stopped (connecting them to a motor means you only need to stop the motor). A Photo Eye on the output conveyor signals if the item can be moved or not. The token enters a zone with a capacity limit of one and only leaves the zone once the item has passed the PE. This stops further items from being moved when the conveyor is already full. After the item is moved the conveyors are resumed.

0 Likes