Files
JuliaFEM.jl/test/test_elasticity_3d_unit_block.jl
T
2016-06-19 20:01:37 +03:00

108 lines
3.5 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.Preprocess
using JuliaFEM.Postprocess
using JuliaFEM.Test
function get_model(fn, vol, sur; with_volume_load=false)
meshfile = Pkg.dir("JuliaFEM")*"/geometry/3d_blocks/BLOCK.med"
mesh = parse_aster_med_file(meshfile, fn)
block = Problem(Elasticity, fn, 3)
block.properties.finite_strain = false
block.properties.geometric_stiffness = false
elements = aster_create_elements(mesh, :BLOCK, vol)
update!(elements, "youngs modulus", 288.0)
update!(elements, "poissons ratio", 1/3)
if with_volume_load
update!(elements, "displacement load 3", 576.0)
end
push!(block, elements...)
traction = aster_create_elements(mesh, :LOAD, sur)
update!(traction, "displacement traction force 3", 288.0)
push!(block, traction...)
bc = Problem(Dirichlet, "symmetry boundary condition", 3, "displacement")
# bc.properties.formulation = :incremental
symyz = aster_create_elements(mesh, :SYMYZ, sur)
symxz = aster_create_elements(mesh, :SYMXZ, sur)
symxy = aster_create_elements(mesh, :SYMXY, sur)
update!(symyz, "displacement 1", 0.0)
update!(symxz, "displacement 2", 0.0)
update!(symxy, "displacement 3", 0.0)
push!(bc, symyz..., symxz..., symxy...)
return block, bc, elements, traction, symyz, symxz, symxy
end
function calc_size(elements, dim; debug_print=false)
A = 0.0
for element in elements
Ael = 0.0
size(element, 1) == dim || continue
for ip in get_integration_points(element)
detJ = element(ip, 0.0, Val{:detJ})
Ael += ip.weight*detJ
end
if debug_print
for (i, X) in enumerate(element["geometry"](0.0))
info("$i : $X")
end
info("Area / volume: $Ael")
end
A += Ael
end
return A
end
function calc_model(model, volume_element, surface_element; with_volume_load=false, debug_print=false)
block, bc, elements, traction, symyz, symxz, symxy = get_model(model, volume_element, surface_element; with_volume_load=with_volume_load)
V = calc_size(block.elements, 3)
A = calc_size(bc.elements, 2)
At = calc_size(traction, 2)
if debug_print
info("volume of block: $V")
info("area of boundary condition: $A")
info("area of load surface: $At")
end
@test isapprox(V, 1.0)
@test isapprox(At, 1.0)
@test isapprox(A, 3.0)
solver = Solver("solver block problem")
#solver.is_linear_system = true
push!(solver, block, bc)
call(solver)
max_u = maximum(block.assembly.u)
nu = round(Int, length(block.assembly.u)/3)
u = reshape(block.assembly.u, 3, nu)
if debug_print
f = reshape(full(block.assembly.f), 3, nu)
dump(round(u', 5))
dump(round(f', 5))
info("max |u| = $max_u")
end
return block, u
end
@testset "test 3d block HEX8" begin
block, u = calc_model("BLOCK_HEX8", :HE8, :QU4; with_volume_load=true)
@test isapprox(maximum(u), 2.0)
end
@testset "test 3d block TET4" begin
# block, u = calc_model("BLOCK_TET4", :TE4, :TR3; with_volume_load=true)
# @test isapprox(maximum(u), 2.1329516539440205)
block, u = calc_model("BLOCK_TET4", :TE4, :TR3; with_volume_load=false)
@test isapprox(maximum(u), 1.0)
end
@testset "test 3d block TET10" begin
block, u = calc_model("BLOCK_TET10", :T10, :TR6; with_volume_load=false)
# @test isapprox(maximum(u), 2.13656216413056)
@test isapprox(maximum(u), 1.0)
end