mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-09-27 12:16:56 +00:00
23 lines
565 B
Julia
23 lines
565 B
Julia
# This file is a part of JuliaFEM.
|
|
# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md
|
|
module JuliaFEM
|
|
|
|
VERSION < v"0.4-" && using Docile
|
|
using Lexicon
|
|
using Logging
|
|
@Logging.configure(level=DEBUG)
|
|
|
|
include("types.jl") # type definitions
|
|
include("elements.jl") # elements
|
|
include("equations.jl") # formulations
|
|
include("problems.jl") # problems
|
|
|
|
include("math.jl") # basic mathematical operations -- obsolete ..?
|
|
|
|
include("elasticity_solver.jl")
|
|
include("xdmf.jl")
|
|
include("abaqus_reader.jl")
|
|
include("interfaces.jl")
|
|
|
|
end # module
|