Control the contact between a rigid ball and a flexible object #5022
-
hello everyone, |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
0.49 This is the position information of the output motion direction. You will find that the height has been decreasing recently, but after the rigid body contacts the flexible object, the height does not decrease anymore. |
Beta Was this translation helpful? Give feedback.
-
Below are my complete program and files. |
Beta Was this translation helpful? Give feedback.
-
Looking forward to anyone's reply! |
Beta Was this translation helpful? Give feedback.
-
Hello ! The problem here is that you are mistaking imposing position with modification of its position data field. This data-field is overridden by the solver. When you move it yourself, if it is interacting with nothing, the solver will not modify it because the increase of velocity of this time-step is null, because no force is applied on it. But when you enter in contact with the object, nothing is holding it at the place you are placing it, so when solving for the contact, it is way easier to push on the sphere than on the model, so its position seems kind of overridden. What you need here, is to impose the position of the sphere in a way, telling the solver that its position is strongly constrained. For this you have two possibilities :
Kno that imposing a position like that might lead to instabilities, compressing an object is not very easy in term of solving. Moreover I see that you are fixing the liver with Hope this was helpful |
Beta Was this translation helpful? Give feedback.
Hello !
The problem here is that you are mistaking imposing position with modification of its position data field. This data-field is overridden by the solver. When you move it yourself, if it is interacting with nothing, the solver will not modify it because the increase of velocity of this time-step is null, because no force is applied on it. But when you enter in contact with the object, nothing is holding it at the place you are placing it, so when solving for the contact, it is way easier to push on the sphere than on the model, so its position seems kind of overridden.
What you need here, is to impose the position of the sphere in a way, telling the solver that its position is stron…