Nodes and Elements

This commit is contained in:
Tero Frondelius
2015-06-06 17:43:51 +03:00
parent 3b43ed3c8b
commit 4473d9761c
+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