← Back to team overview

yade-users team mailing list archive

[Question #682318]: Velocity of Clumps

 

New question #682318 on Yade:
https://answers.launchpad.net/yade/+question/682318

Hello,

how can one inspect clump's velocity? I am currently generating clumps out of several spheres. During the simulation, I want to inspect their center's velocity. This is the part of my script that deals with creating the clumps:
 
# Create Clumps out of several spheres
polyeder = createPolyeder([heightParticle,widthParticle,deepParticle,rSpheres])

# clump them together
for j in range(amountOfClumps):
	clump.append(O.bodies.appendClumped([sphere([polyeder[i][0],polyeder[i][1],polyeder[i][2]], \
                         material='ID', radius=polyeder[i][3]) for i in range(len(polyeder))])))

How can I inspect their velocity?

Thank you in advance

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