mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-09-07 03:36:23 +00:00
25 lines
473 B
Julia
25 lines
473 B
Julia
# This file is a part of JuliaFEM.
|
|
# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md
|
|
|
|
module interfaces
|
|
|
|
using Logging
|
|
@Logging.configure(level=DEBUG)
|
|
|
|
#using JuliaFEM.elasticity_solver
|
|
export solve_elasticity_interface!
|
|
|
|
"""
|
|
This is generic interface that reads data from data model, solves elasticity
|
|
problem and updates model.
|
|
|
|
Parameters
|
|
----------
|
|
model : to be defined
|
|
"""
|
|
function solve_elasticity_interface!()
|
|
return 0
|
|
end
|
|
|
|
end
|