Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No traction condition for contact algorithm #6

Open
WaveHello opened this issue Nov 24, 2023 · 2 comments
Open

No traction condition for contact algorithm #6

WaveHello opened this issue Nov 24, 2023 · 2 comments

Comments

@WaveHello
Copy link
Owner

WaveHello commented Nov 24, 2023

Traction condition from Base algorithm follows Bardenhagen et al. (2001) is not implemented for the contact algorithm. The traction is calculated but there isn't an if statement to actually be able to use it to track if contact should be applied. Is in subroutine ApplyMPMDynamicContact().

@WaveHello
Copy link
Owner Author

Added the required update:

if (traction < 0.0 or. DiffDotUn>0.0 .and. traction == 0.0) then 

right before the following comments

!If the modified contact model is used, correction is done when Traction < 0 (compression)
! The exeption is when it is the first contact and all stresses are still zero: 
!    - this will give Traction = 0

@WaveHello
Copy link
Owner Author

WaveHello commented Jan 11, 2024

Changed update to (on Anura3D_VelCorrection branch)

if (traction < 0.0 .and. DiffDotUn>0.0 or. DiffDotUn>0.0 .and. traction == 0.0) then 

even if the traction condition is used the difference in velocity should still be checked.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant