Files
JuliaFEM.jl/src/JuliaFEM.jl
T
2015-09-24 21:05:04 +03:00

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