Files
JuliaFEM.jl/src/assembly.jl
T

12 lines
375 B
Julia
Raw Normal View History

2015-10-28 04:29:14 +02:00
# This file is a part of JuliaFEM.
# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md
# Functions to handle global assembly of problem
function assemble!(assembly::Assembly, problem::Problem, time::Number=0.0)
empty!(assembly)
for equation in get_equations(problem)
assemble!(assembly, equation, time, problem)
2015-10-28 04:29:14 +02:00
end
end