Files
JuliaFEM.jl/src/interfaces.jl
T

25 lines
473 B
Julia
Raw Normal View History

# This file is a part of JuliaFEM.
# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md
2015-06-23 23:45:15 +03:00
module interfaces
using Logging
@Logging.configure(level=DEBUG)
#using JuliaFEM.elasticity_solver
export solve_elasticity_interface!
2015-06-26 18:54:53 +03:00
"""
2015-06-23 23:45:15 +03:00
This is generic interface that reads data from data model, solves elasticity
problem and updates model.
Parameters
----------
model : to be defined
2015-06-26 18:54:53 +03:00
"""
2015-06-23 23:45:15 +03:00
function solve_elasticity_interface!()
return 0
end
end