Page 1 of 1

[Bepu2] Moving platform

Posted: Mon Jun 17, 2019 6:23 pm
by Darkon76
Hello, I'm trying to create moving platforms than can carry objects, the problem is that it looks like the platform is made of ice. It has the default FrictionCoefficient of 1. At bepu 1 if both the payload and the platform had friction 1 they will move in parallel.
2019-06-17_13-11-39.mp4
Friction 1
(1.68 MiB) Downloaded 373 times
If I increase the friction to 5. I moves with the platform but the carried object starts rotating.
2019-06-17_13-13-12.mp4
Friction 5.
(1.47 MiB) Downloaded 352 times
Is there a way to have the same behavior of bepu 1, that if you set the friction to 1, and you start moving the platform the carried object start moving in place, with out acceleration?

Re: [Bepu2] Moving platform

Posted: Mon Jun 17, 2019 9:52 pm
by Norbo
Two things likely happening:
1) v1 split friction into kinetic versus static. Static tended to be higher, so unmoving objects (relative to the support) slid less.
2) v1 arbitrarily boosted inertia tensors by default, making them less prone to rolling.

So what you are observing is expected behavior. If you want stickier/less easily rolled behavior, use a higher friction coefficient and scale down the inverse inertia tensor.

Re: [Bepu2] Moving platform

Posted: Tue Jun 18, 2019 3:32 pm
by Darkon76
Hello

Thanks for the help