mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-09-24 19:19:54 +00:00
a5a2c43dd8
* Add docstrings * Refactor code * Module level docstring giving an example
15 lines
421 B
Julia
15 lines
421 B
Julia
# This file is a part of JuliaFEM.
|
|
# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md
|
|
|
|
function assemble!(problem::Problem, time, ::Type{Val{:mass_matrix}})
|
|
assemble_mass_matrix!(problem, time)
|
|
end
|
|
|
|
function assemble!(problem::Problem, element::Element, time=0.0)
|
|
assemble!(problem.assembly, problem, element, time)
|
|
end
|
|
|
|
module Abaqus
|
|
using JuliaFEM: create_surface_elements
|
|
end
|