How to turn off damping for TetModel #145
-
Hi @janbender I thought it had to do with some kind of friction. But I think it's related to |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Actually there is no problem if I need to add some Joints between vertices The question is do all the Joints have damping and where it comes in Tet variant |
Beta Was this translation helpful? Give feedback.
-
Which method did you choose in the call of addSolidConstraints? Friction and restitution only applies to collisions. So if there are no collisions, this won't change anything. Note that PBD suffers from numerical damping (similar to the implicit Euler integrator). You can improve this by using the second-order velocity update. Otherwise you can test if it gets better when reducing the time step size. |
Beta Was this translation helpful? Give feedback.
-
@janbender Thanks
And it's looks much better |
Beta Was this translation helpful? Give feedback.
Which method did you choose in the call of addSolidConstraints? Friction and restitution only applies to collisions. So if there are no collisions, this won't change anything.
Note that PBD suffers from numerical damping (similar to the implicit Euler integrator). You can improve this by using the second-order velocity update. Otherwise you can test if it gets better when reducing the time step size.