← Back to team overview

yade-users team mailing list archive

Re: [Question #211289]: Ask for conveyor belt model, a plane having speed but no motion, like the "moving plane" model in EDEM

 

Question #211289 on Yade changed:
https://answers.launchpad.net/yade/+question/211289

    Status: Open => Answered

Chareyre proposed the following answer:
For the immobile moving plane (!), you may try this trick:

O.engines=[
   ...
   assignVelocityToThePlaneSomehow(v=beltSpeed),
   InteractionLoop(...),
   assignVelocityToThePlaneSomehow(v=0),
   NewtonLaw(),
]

That way, interactions will be computed as if the plane was moving, but motion integration will see it has a body with null velocity.
Assigning velocity can be done with a simple PeriodicEngine.

If you try this and make it work, please let us know. We could include
it as an example script as it can be usefull for other users.

-- 
You received this question notification because you are a member of
yade-users, which is an answer contact for Yade.