From d840e56575868d0eb2aab8e2ccdccfb44cdfa4f0 Mon Sep 17 00:00:00 2001 From: Jukka Aho Date: Mon, 9 Jan 2017 11:26:04 +0200 Subject: [PATCH] attempt to fix boundary condition --- src/abaqus.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/abaqus.jl b/src/abaqus.jl index 0393f90..e993a5c 100644 --- a/src/abaqus.jl +++ b/src/abaqus.jl @@ -400,7 +400,7 @@ function create_boundary_problem(model::Model, bc::AbstractBoundaryCondition, :: nodes = row[1] end - elements = [Element(Poi1, [id]) for id in nodes] + elements = Element[Element(Poi1, [id]) for id in nodes] update!(elements, "geometry", model.mesh.nodes) for dof in row[2]:row[end]