From 817a673d7664159605040410b9412e2f9cd19474 Mon Sep 17 00:00:00 2001 From: Tero Frondelius Date: Sat, 6 Jun 2015 17:43:51 +0300 Subject: [PATCH] Nodes and Elements --- src/JuliaFEM.jl | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/JuliaFEM.jl b/src/JuliaFEM.jl index 04075f2..e35e655 100644 --- a/src/JuliaFEM.jl +++ b/src/JuliaFEM.jl @@ -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