Conveyor with speed variations

Hi All,

I like to have a conveyor which has a certain speed interval interval. Sort of a intermittent profile.

Pleas see the profile attached

You could use the acceleration and decceleration attributes of path behaviour or just write a script in python for example:

speed = 0
max_speed = 0.33
path = comp.findBehaviour("path")

while speed < max_speed:
   path.Speed = speed
   speed += 0.05
   delay(0.1)
...

Didn’t check it but should prob go like that

Ok thanx for you answer

Is it possible to make a function in python which makes the belt move 400 mm each step?