From b0f7ad556cb279809e0def3ece124802c8b2a78d Mon Sep 17 00:00:00 2001 From: Petr Krysl Date: Sun, 8 Dec 2024 19:48:53 -0800 Subject: [PATCH] modify citation --- CITATION.cff | 4 ++-- test_meshing.jl | 28 ---------------------------- 2 files changed, 2 insertions(+), 30 deletions(-) delete mode 100644 test_meshing.jl diff --git a/CITATION.cff b/CITATION.cff index 0e04f14b..ee27a4f1 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -5,7 +5,7 @@ authors: given-names: "Petr" orcid: "https://orcid.org/0000-0003-1761-5047" title: "FinEtools.jl: Finite Element Tools in Julia" -version: 7.3.0 +version: 8.0.26 doi: 10.5281/zenodo.7187506 -date-released: 2024-1-5 +date-released: 2024-2-8 url: "https://github.com/PetrKryslUCSD/FinEtools.jl" diff --git a/test_meshing.jl b/test_meshing.jl deleted file mode 100644 index 867937cf..00000000 --- a/test_meshing.jl +++ /dev/null @@ -1,28 +0,0 @@ -module mexpoff1 -using FinEtools -using FinEtools.MeshImportModule -using FinEtools.MeshExportModule.OFF: header, vertex, facet -using Test -function test() - - output = MeshImportModule.import_ABAQUS("failed-tetgen.inp"; allocationchunk = 11) - fens, fes = output["fens"], output["fesets"][1] - - filename = "mesh.off" - e = OFFExporter(filename::AbstractString) - header(e, count(fens), count(fes)) - for i in eachindex(fens) - vertex(e, fens.xyz[i, :]...) - end - for i in eachindex(fes) - c = fes.conn[i] - facet(e, c[1], c[2], c[3],) - end - close(e) - @test filesize(filename) > 0 - rm(filename) - # @async run(`"paraview.exe" $File`) -end -end -using .mexpoff1 -mexpoff1.test()