How to move on from the Buffer Statement and execute the next line

Hello,

I am working on a project where i need to stack up 10 pieces of cylinders and release them one by one to the next process, starting with the bottom cylinder. I used Buffer Statement to stack them up but none of the cylinders travels out of the stack to the next node. Do you have any ideas on how to do that?

Having a buffer statement in your process routine does not support other statements in the same routine.

1 Like

Hello,
I recommend using StartTransportIn statement instead of Buffer statement.
Buffer statement is a special statement that actually does the functions of TransportIn and TransportOut inside it, and is meant for cases where products can be transported out simultaneously with transporting in. And the statement runs forever or until BreakCondition is fulfilled.

I made a quick test and the floorspace stack would work alright for this sort of case.

StackSample.vcmx (421.7 KB)

Hi Este, thank you so much, this is exactly what I need. I also learned many new things when I recreated your vcmx file. You just saved a life! :innocent:

Hi KustiH, the BreakCondition in Buffer is confusing me so much but thank you so much for your reply.