mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-09-09 12:42:19 +00:00
53 lines
1.9 KiB
Julia
53 lines
1.9 KiB
Julia
# This file is a part of JuliaFEM.
|
|
# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md
|
|
|
|
using JuliaFEM
|
|
using JuliaFEM.Test
|
|
|
|
@testset "test continuum nonlinear elasticity with surface load" begin
|
|
|
|
nodes = Dict{Int64, Node}(
|
|
1 => [0.0, 0.0, 0.0],
|
|
2 => [1.0, 0.0, 0.0],
|
|
3 => [1.0, 1.0, 0.0],
|
|
4 => [0.0, 1.0, 0.0],
|
|
5 => [0.0, 0.0, 1.0],
|
|
6 => [1.0, 0.0, 1.0],
|
|
7 => [1.0, 1.0, 1.0],
|
|
8 => [0.0, 1.0, 1.0])
|
|
|
|
element1 = Element(Hex8, [1, 2, 3, 4, 5, 6, 7, 8])
|
|
element2 = Element(Quad4, [5, 6, 7, 8])
|
|
update!([element1, element2], "geometry", nodes)
|
|
update!([element1], "youngs modulus", 900.0)
|
|
update!([element1], "poissons ratio", 0.25)
|
|
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)
|
|
|
|
symxy = Element(Quad4, [1, 2, 3, 4])
|
|
symxz = Element(Quad4, [1, 2, 6, 5])
|
|
symyz = Element(Quad4, [1, 4, 8, 5])
|
|
update!([symxy, symxz, symyz], "geometry", nodes)
|
|
symxy["displacement 3"] = 0.0
|
|
symxz["displacement 2"] = 0.0
|
|
symyz["displacement 1"] = 0.0
|
|
boundary_problem = Problem(Dirichlet, "symmetry boundary conditions", 3, "displacement")
|
|
push!(boundary_problem, symxy, symxz, symyz)
|
|
|
|
solver = NonlinearSolver("solve 3d block")
|
|
push!(solver, elasticity_problem)
|
|
push!(solver, boundary_problem)
|
|
call(solver)
|
|
|
|
disp = element1("displacement", [1.0, 1.0, 1.0], 0.0)
|
|
info("displacement at tip: $disp")
|
|
# verified using Code Aster.
|
|
# 2015-12-12-continuum-elasticity/vim c3d_grot_gdep_traction_force.comm
|
|
@test isapprox(disp, [3.17431158889468E-02, 3.17431158889468E-02, -1.38591518927826E-01]; rtol=1.0e-4)
|
|
end
|
|
|