finite strain is off by default

This commit is contained in:
Jukka Aho
2016-06-09 01:27:29 +03:00
parent dfb890b6d5
commit e94c17bb39
2 changed files with 2 additions and 0 deletions
@@ -12,6 +12,7 @@ using JuliaFEM.Test
# field problem
block = Problem(Elasticity, "BLOCK", 2)
block.properties.formulation = :plane_stress
block.properties.finite_strain = true
elements = aster_create_elements(mesh, :BLOCK, :QU4)
update!(elements, "youngs modulus", 288.0)
@@ -24,6 +24,7 @@ using JuliaFEM.Test
update!([element2], "displacement traction force", Vector{Float64}[[0.0, 0.0, -100.0] for i=1:4])
elasticity_problem = Problem(Elasticity, "solve continuum block", 3)
elasticity_problem.properties.finite_strain = true
push!(elasticity_problem, element1)
push!(elasticity_problem, element2)