moved interface code out from solver

This commit is contained in:
Jukka Aho
2015-06-23 23:45:15 +03:00
parent 0ffa1ba765
commit 2f4896e6b7
2 changed files with 24 additions and 16 deletions
-16
View File
@@ -6,22 +6,6 @@ using Logging
VERSION < v"0.4-" && using Docile
export solve_elasticity_interface!
@doc """
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
# Below this line is internal functions related to solver. They can be used
# directly if needed or using general interface combining data model and
# solver.
+24
View File
@@ -0,0 +1,24 @@
# This file is a part of JuliaFEM. License is MIT: https://github.com/ovainola/JuliaFEM/blob/master/README.md
module interfaces
using Logging
@Logging.configure(level=DEBUG)
VERSION < v"0.4-" && using Docile
#using JuliaFEM.elasticity_solver
export solve_elasticity_interface!
@doc """
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