From f29640d79576feb7a6407d9b24ea699b0702da62 Mon Sep 17 00:00:00 2001 From: ovainola Date: Fri, 26 Jun 2015 18:55:09 +0300 Subject: [PATCH] Update shape_functions.jl --- src/shape_functions.jl | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/shape_functions.jl b/src/shape_functions.jl index 968f7f3..e49c6c3 100644 --- a/src/shape_functions.jl +++ b/src/shape_functions.jl @@ -1,13 +1,3 @@ # This file is a part of JuliaFEM. # License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md -function C2D4(xx) - theta = 1 - chi = xx[1] - eta = xx[2] - return = [(1 - chi) * (1 - eta), - chi * (1 - eta), - chi * eta, - (1 - chi) * eta] -end -