mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-09-20 01:59:59 +00:00
aabcda2e26
This function can be used to create elements from node set defined in mesh. Resulting elements are of type Poi1, that is, they don't have any volume but it's still possible to add boundary conditions to them which are then enforced in discrete sense.
61 lines
1.9 KiB
Julia
61 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 AbaqusReader
|
|
|
|
function abaqus_read_mesh(fn::String)
|
|
m = AbaqusReader.abaqus_read_mesh(fn)
|
|
return Mesh(m)
|
|
end
|
|
|
|
"""
|
|
create_surface_elements(mesh::Mesh, surface_name::Symbol)
|
|
|
|
Create a set of surface elements from solid elements.
|
|
|
|
Notation follow what is defined in ABAQUS. For example, if solid elements
|
|
are Tet10, surface elements will be Tri6 and they can be used to define
|
|
boundary conditions.
|
|
"""
|
|
function create_surface_elements(mesh::Mesh, surface_name::Symbol)
|
|
elements = Element[]
|
|
for (elid, elsi) in mesh.surface_sets[surface_name]
|
|
elty = mesh.element_types[elid]
|
|
elco = mesh.elements[elid]
|
|
chel, chcon = AbaqusReader.create_surface_element(elty, elsi, elco)
|
|
ch = Element(getfield(JuliaFEM, chel), chcon)
|
|
push!(elements, ch)
|
|
end
|
|
update!(elements, "geometry", mesh.nodes)
|
|
return elements
|
|
end
|
|
|
|
"""
|
|
create_surface_elements(mesh::Mesh, surface_name::String)
|
|
|
|
Create a set of surface elements from solid elements.
|
|
|
|
Notation follow what is defined in ABAQUS. For example, if solid elements
|
|
are Tet10, surface elements will be Tri6 and they can be used to define
|
|
boundary conditions.
|
|
"""
|
|
function create_surface_elements(mesh::Mesh, surface_name::String)
|
|
return create_surface_elements(mesh, Symbol(surface_name))
|
|
end
|
|
|
|
"""
|
|
create_nodal_elements(mesh::Mesh, node_set_name::String)
|
|
|
|
Create a set of "nodal" elements from node set.
|
|
|
|
Nodal elements are of type Poi1. In principle they don't have volume and it's
|
|
not possible to integrate over them. It is however possible to add boundary
|
|
conditions to them.
|
|
"""
|
|
function create_nodal_elements(mesh::Mesh, node_set_name::String)
|
|
node_ids = mesh.node_sets[Symbol(node_set_name)]
|
|
elements = [Element(Poi1, [j]) for j in node_ids]
|
|
update!(elements, "geometry", mesh.nodes)
|
|
return elements
|
|
end
|