← Back to team overview

yade-users team mailing list archive

Re: [Question #659177]: NewtonIntegrator won't work

 

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

    Status: Open => Answered

Robert Caulk proposed the following answer:
Hello Giovanni,

Your geometry functors are incorrect. Ig2_Sphere_Sphere_ScGom_Inc() does
not exist AFAIK. (also you will want to use Facets, instead of Walls
IINM.

Consider starting from example templates that you know work. In this
case, replace your engine list to match the engine list from the
funnel.py example [1].

O.engines=[
	ForceResetter(), 
	InsertionSortCollider([Bo1_Sphere_Aabb(),Bo1_Facet_Aabb()]),
	InteractionLoop(
	[Ig2_Sphere_Sphere_ScGeom(),
		Ig2_Facet_Sphere_ScGeom()],
		[Ip2_FrictMat_FrictMat_FrictPhys()],
		[Law2_ScGeom_FrictPhys_CundallStrack()]
	),
	NewtonIntegrator(gravity=(0,0,-9.81)),
]

[1]https://github.com/yade/trunk/blob/master/examples/funnel.py

-- 
You received this question notification because your team yade-users is
an answer contact for Yade.