Re: [Yade-users] [Question #293247]: Physic interaction betweem particles and polyhedra

2016-05-12 Thread Jonathan Pergoli
Question #293247 on Yade changed: https://answers.launchpad.net/yade/+question/293247 Status: Answered => Solved Jonathan Pergoli confirmed that the question is solved: Now I can distinguish between interactions: def rollingfriction(): for i in sphere: try:

Re: [Yade-users] [Question #293247]: Physic interaction betweem particles and polyhedra

2016-05-06 Thread Jonathan Pergoli
Question #293247 on Yade changed: https://answers.launchpad.net/yade/+question/293247 Jonathan Pergoli posted a new comment: Sorry I wrote the wrong code. I did this: O.engines=[ ForceResetter(), InsertionSortCollider([Bo1_Sphere_Aabb(),Bo1_Box_Aabb()]), InteractionLoop(

Re: [Yade-users] [Question #293247]: Physic interaction betweem particles and polyhedra

2016-05-06 Thread Jonathan Pergoli
Question #293247 on Yade changed: https://answers.launchpad.net/yade/+question/293247 Jonathan Pergoli posted a new comment: In this way the simulation distinguishes between en and es, but for the rolling friction coefficient krot it doesn't work. -- You received this question notification

Re: [Yade-users] [Question #293247]: Physic interaction betweem particles and polyhedra

2016-05-06 Thread Jonathan Pergoli
Question #293247 on Yade changed: https://answers.launchpad.net/yade/+question/293247 Jonathan Pergoli posted a new comment: What about this: gravel=FrictMat(density=1700,frictionAngle=.9188,label="gravel") O.materials.append(gravel) MLI=FrictMat(density=1280,frictionAngle=0.1489,label="MLI")

Re: [Yade-users] [Question #293247]: Physic interaction betweem particles and polyhedra

2016-05-05 Thread Jérôme Duriez
Question #293247 on Yade changed: https://answers.launchpad.net/yade/+question/293247 Jérôme Duriez proposed the following answer: Yes, this is what I meant (in case your non-spherical bodies are all of the same type, either Facet or Box, you may remove either Bo1_Box_Aabb() ;

Re: [Yade-users] [Question #293247]: Physic interaction betweem particles and polyhedra

2016-05-05 Thread Jonathan Pergoli
Question #293247 on Yade changed: https://answers.launchpad.net/yade/+question/293247 Jonathan Pergoli posted a new comment: Hi Jérome, you mean this: O.engines=[ ForceResetter(), InsertionSortCollider([Bo1_Sphere_Aabb(),Bo1_Facet_Aabb(),Bo1_Box_Aabb()]),

Re: [Yade-users] [Question #293247]: Physic interaction betweem particles and polyhedra

2016-05-04 Thread Jérôme Duriez
Question #293247 on Yade changed: https://answers.launchpad.net/yade/+question/293247 Jérôme Duriez proposed the following answer: Hello, You mix here "geometry" [1] and "physics" [2] of YADE interactions. In order to describe interactions in DEM, you need to know: - what is the relative

Re: [Yade-users] [Question #293247]: Physic interaction betweem particles and polyhedra

2016-05-04 Thread Jonathan Pergoli
Question #293247 on Yade changed: https://answers.launchpad.net/yade/+question/293247 Jonathan Pergoli posted a new comment: P.S. I'm new to YADE :-) -- You received this question notification because your team yade-users is an answer contact for Yade.

Re: [Yade-users] [Question #293247]: Physic interaction betweem particles and polyhedra

2016-05-04 Thread Jonathan Pergoli
Question #293247 on Yade changed: https://answers.launchpad.net/yade/+question/293247 Jonathan Pergoli posted a new comment: Thanks Jan, but I mean how can i modifie Ip2_FrictMat_FrictMat_MindlinPhys in order to distinguish between sphere-sphere and sphere box? :-) I'm using box now instead of

Re: [Yade-users] [Question #293247]: Physic interaction betweem particles and polyhedra

2016-05-04 Thread Jan Stránský
Question #293247 on Yade changed: https://answers.launchpad.net/yade/+question/293247 Jan Stránský proposed the following answer: instead of using utils.polyhedron() using utils.box() :-) + changing some Ig2 and Law2 fomr Polyhedra to Box cheers Jan 2016-05-04 18:13 GMT+02:00 Jonathan Pergoli <

Re: [Yade-users] [Question #293247]: Physic interaction betweem particles and polyhedra

2016-05-04 Thread Jonathan Pergoli
Question #293247 on Yade changed: https://answers.launchpad.net/yade/+question/293247 Jonathan Pergoli posted a new comment: Hi Jan, How can be modified? I have only one box. -- You received this question notification because your team yade-users is an answer contact for Yade.

Re: [Yade-users] [Question #293247]: Physic interaction betweem particles and polyhedra

2016-05-04 Thread Jan Stránský
Question #293247 on Yade changed: https://answers.launchpad.net/yade/+question/293247 Status: Open => Answered Jan Stránský proposed the following answer: Hi Jonathan, currently you can have only one instance (thus one set of parameters) of p2_FrictMat_FrictMat_MindlinPhys. If needed, it

[Yade-users] [Question #293247]: Physic interaction betweem particles and polyhedra

2016-05-04 Thread Jonathan Pergoli
New question #293247 on Yade: https://answers.launchpad.net/yade/+question/293247 Hi everybody! I'm trying to simulate a box falling on a cylindrical pack of spheres. The spheres have coefficient of restitution = .1 and the box has a COR = .6. For the spheres I have used