What engine parameters are used to handle interactions...

Asked by Christopher Stanbridge

...between a Facet and a Wall? In my latest simulation, I'm trying to incorporate a falling cube that bounces off a floor (xy-plane wall), but when the simulation is run using my current engines (all of which have "Sphere" in the names), the cube simply falls through the floor. I'm specifically interested to know what extra parameters I need to add to my InsertionSortCollider and InteractionLoop.

Question information

Language:
English Edit question
Status:
Solved
For:
Yade Edit question
Assignee:
No assignee Edit question
Solved by:
Christopher Stanbridge
Solved:
Last query:
Last reply:
Revision history for this message
Jan Stránský (honzik) said :
#1

Hi Christopher,
see [1] for the list of available IGeom functors (for combination of
different shapes). Sorry, if I am right, there is no box-facet interaction
available.
You could use a polyhedron instead of box.
cheers
Jan

[1] https://yade-dem.org/doc/yade.wrapper.html#igeomfunctor

2014-09-24 18:12 GMT+02:00 Christopher Stanbridge <
<email address hidden>>:

> New question #254951 on Yade:
> https://answers.launchpad.net/yade/+question/254951
>
> ...between a Facet and a Wall? In my latest simulation, I'm trying to
> incorporate a falling cube that bounces off a floor (xy-plane wall), but
> when the simulation is run using my current engines (all of which have
> "Sphere" in the names), the cube simply falls through the floor. I'm
> specifically interested to know what extra parameters I need to add to my
> InsertionSortCollider and InteractionLoop.
>
> --
> You received this question notification because you are a member of
> yade-users, which is an answer contact for Yade.
>
> _______________________________________________
> Mailing list: https://launchpad.net/~yade-users
> Post to : <email address hidden>
> Unsubscribe : https://launchpad.net/~yade-users
> More help : https://help.launchpad.net/ListHelp
>

Revision history for this message
Jérôme Duriez (jduriez) said :
#2

Hi,

The right question is in fact : which "engine" (Ig functor would be more rigourous) is adapted to handle the interaction between a Facet and a Wall ? It is not a matter of a parameters of a given engine, but you need to pick up the right "engine".

For some years, class names in Yade are really helpful for that : you are looking to something named "Ig2_Facet_Wall_SomeIGeom". So :

- any Ig functor with "Sphere" in its name won't suit

- give a look at https://yade-dem.org/doc/yade.wrapper.html#igeomfunctor, and you will see that, unfortunately, the thing you're looking for does not exist at the moment... But Yade is open-source... ;-)

Jerome

Revision history for this message
Christopher Stanbridge (cws105) said :
#3

Thanks for your prompt answers. I will try using a polyhedron. Is there a built-in engine that allows polyhedron-wall interactions?

Revision history for this message
Jan Stránský (honzik) said :
#5

https://yade-dem.org/doc/yade.wrapper.html#yade.wrapper.Ig2_Wall_Polyhedra_PolyhedraGeom

Jan

2014-09-24 18:37 GMT+02:00 Christopher Stanbridge <
<email address hidden>>:

> Question #254951 on Yade changed:
> https://answers.launchpad.net/yade/+question/254951
>
> Status: Answered => Open
>
> Christopher Stanbridge is still having a problem:
> Thanks for your prompt answers. I will try using a polyhedron. Is there
> a built-in engine that allows polyhedron-wall interactions?
>
> --
> You received this question notification because you are a member of
> yade-users, which is an answer contact for Yade.
>
> _______________________________________________
> Mailing list: https://launchpad.net/~yade-users
> Post to : <email address hidden>
> Unsubscribe : https://launchpad.net/~yade-users
> More help : https://help.launchpad.net/ListHelp
>

Revision history for this message
Christopher Stanbridge (cws105) said :
#6

Thanks very much!