Nodes and Elements

This commit is contained in:
Tero Frondelius
2015-06-06 17:43:51 +03:00
parent 6df2755555
commit 817a673d76
+9 -1
View File
@@ -1,6 +1,14 @@
# This file is a part of JuliaFEM. License is MIT: https://github.com/ovainola/JuliaFEM/blob/master/README.md
module JuliaFEM
# package code goes here
test = 1
type Node
node_id
coords
end
type Element
element_id
node_ids
end
end # module