Skip to content

Commit 360a363

Browse files
Fixed typo in jac line 70 of hyperelastic demo
1 parent 6a2c74e commit 360a363

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/hyperelasticity.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jac_mat(u,du,v) = ∫( (dE∘(∇(v),∇(u))) ⊙ (dS∘(∇(du),∇(u))) )*dΩ
6767

6868
jac_geo(u,du,v) = ( (v) ( (S(u))(du) ) )*
6969

70-
jac(u,du,v) = jac_mat(u,v,du) + jac_geo(u,v,du)
70+
jac(u,du,v) = jac_mat(u,du,v) + jac_geo(u,du,v)
7171

7272
# Construct the FEspace
7373
reffe = ReferenceFE(lagrangian,VectorValue{2,Float64},1)

0 commit comments

Comments
 (0)