Skip to content

Commit 622e1c2

Browse files
authored
Update Penalty_model.jl
1 parent cb70323 commit 622e1c2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Models/Contact/Penalty_model.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ function compute_contact_model(cg, params, compute_master_force_density,
5353
horizon = get_shared_horizon(slave_id) # needed to get the correct contact horizon
5454
# TODO symmetry needed
5555
if params["Symmetry"] == "plane stress"
56-
stiffness = 9 / (pi * horizon^4) # https://doi.org/10.1016/j.apm.2024.01.015 under EQ (9)
56+
stiffness = 9 / (pi * horizon^3) # https://doi.org/10.1016/j.apm.2024.01.015 under EQ (9)
5757
elseif params["Symmetry"] == "plane strain"
58-
stiffness = 48 / (5 * pi * horizon^4) # https://doi.org/10.1016/j.apm.2024.01.015 under EQ (9)
58+
stiffness = 48 / (5 * pi * horizon^3) # https://doi.org/10.1016/j.apm.2024.01.015 under EQ (9)
5959
else
6060
stiffness = 9 / (pi * horizon^5) # -> from Peridigm
6161
#stiffness = 12 / (pi * horizon^4) # https://doi.org/10.1016/j.apm.2024.01.015 under EQ (9)

0 commit comments

Comments
 (0)