Fixed abaqus_read_mesh() 1.0E+00 problem

This commit is contained in:
Tero Frondelius
2016-11-17 19:43:20 +02:00
parent 397a34e317
commit 4c8c66b8da
3 changed files with 10 additions and 4 deletions
+6
View File
@@ -55,3 +55,9 @@ end
elements = create_surface_elements(mesh,:LOAD)
@test get_connectivity(elements[1]) == [8,10,9]
end
@testset "parse nodes from abaqus .inp file to Mesh (NX export)" begin
fn = joinpath(Pkg.dir("JuliaFEM"), "test", "testdata","nx_export_problem.inp")
mesh = abaqus_read_mesh(fn)
@test length(mesh.nodes) == 3
end