Ansys Learning Forum › Forums › Discuss Simulation › General Mechanical › HOW TO EXPORT CONTACT PROPERTIES FROM MY ROCKY DEM SIMULATION › Reply To: HOW TO EXPORT CONTACT PROPERTIES FROM MY ROCKY DEM SIMULATION
December 11, 2024 at 5:41 pm
Jackson Gomes
Ansys Employee
Hi Ayuk,
To ensure that the information is available for export, you need to enable the Contacts and the Inter-Particles Collision Statistics Module in your simulation setup. This will allow the required data to be collected and made accessible for export using the script.
See the example of how to get the contact's data via script:
project = app.GetProject()
study = project.GetStudy()
contacts = study.GetContactData()
Best regards.