yade-users team mailing list archive
-
yade-users team
-
Mailing list archive
-
Message #28127
Re: [Question #702665]: How to calculate the height of particle accumulation?
Question #702665 on Yade changed:
https://answers.launchpad.net/yade/+question/702665
Karol Brzezinski posted a new comment:
aabbDim() gives you dimensions (three values), so it should rather be:
#####
O.bodies.append(geom.facetBox((0.05, 3, 4), (0.1, 3, 4), wallMask=63))
sp = pack.SpherePack()
sp.makeCloud(Vector3(0.05,0,0),Vector3(0.05,6,8), rMean=0.05, rRelFuzz=0)
sp.toSimulation()
(xdim,ydim,zdim) = aabbDim()
print("Height is ",zdim)
####
Cheers,
Karol
--
You received this question notification because your team yade-users is
an answer contact for Yade.