Setup peridynamic interaction #1561
Draft
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is the initial draft for implementing peridynamic interaction within the particle-based SPH framework. The methodological work is by @armanshojaei
Peridynamic in a nutshell:
Peridynamics is a nonlocal continuum mechanics theory that replaces classical partial differential equations with integral equations, making it well-suited for modeling discontinuities like cracks. Unlike traditional continuum methods, it treats material points as interacting through bonds over a finite distance, similar to particles. This approach conceptually relates to particle methods like DEM (Discrete Element Method), but while DEM is purely particle-based for granular materials, peridynamics retains continuum properties while enabling fracture and damage simulation without special crack-tracking algorithms.
The main idea of the current implementation is as follows:
The code changes can be summarized as follows:
4C_particle_interaction_sph.cpp4C_particle_interaction_sph_peridynamic.hpp4C_particle_interaction_pd_neighbor_pairs.hppwhich is capable of excluding the peridynamic pairs from the colliding pairs.4C_particle_interaction_sph_rigid_particle_contact.cpp, the condition for evaluation of collisions relies on theinitialparticlespacing(in the standard SPH case) which needs further clarification in the peridynamic contact scenario (WIP)Interested groups
@ppraegla