Replies: 1 comment 1 reply
-
Hello, have you found how to set these Thanks! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi team,
While inspecting the contact handling in the Genesis codebase, I noticed that each contact has associated sol_params, which seem to influence the contact force calculation (e.g., stiffness, damping, restitution, etc.).
Currently, it looks like the sol_params for each geometry are averaged when a contact is created:
impact.sol_params = 0.5 * (ga_info.sol_params + gb_info.sol_params)
However, I wasn't able to find where ga_info.sol_params and gb_info.sol_params are initially set.
Could you please point me to:
Where the default sol_params values are assigned for geometries?
Whether there is a way to customize sol_params per object or material?
If not, what would be the best place to modify them before simulation starts?
My goal is to study how different stiffness and damping values affect the contact forces during simulation.
Thanks a lot in advance!
Beta Was this translation helpful? Give feedback.
All reactions