1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
import pathlib
import numpy as np
import pytest
import meshio
from . import helpers
@pytest.mark.parametrize(
"mesh",
[
helpers.empty_mesh,
helpers.tet_mesh,
helpers.hex_mesh,
helpers.tet_mesh,
helpers.add_cell_sets(helpers.tet_mesh),
],
)
@pytest.mark.parametrize("binary", [False, True])
def test(mesh, binary, tmp_path):
# mesh.write("out.f3grid")
helpers.write_read(
tmp_path,
lambda f, m: meshio.flac3d.write(f, m, binary=binary),
meshio.flac3d.read,
mesh,
1.0e-15,
)
@pytest.mark.parametrize(
"filename",
["flac3d_mesh_ex.f3grid", "flac3d_mesh_ex_bin.f3grid"],
)
def test_reference_file(filename):
this_dir = pathlib.Path(__file__).resolve().parent
filename = this_dir / "meshes" / "flac3d" / filename
mesh = meshio.read(filename)
# points
assert np.isclose(mesh.points.sum(), 307.0)
# cells
ref_num_cells = [
("quad", 15),
("triangle", 3),
("hexahedron", 45),
("pyramid", 9),
("hexahedron", 18),
("wedge", 9),
("hexahedron", 6),
("wedge", 3),
("hexahedron", 6),
("wedge", 3),
("pyramid", 6),
("tetra", 3),
]
assert [
(cell_block.type, len(cell_block)) for cell_block in mesh.cells
] == ref_num_cells
# Cell sets
for arr in mesh.cell_sets.values():
assert len(arr) == 12
assert [len(arr) for arr in mesh.cell_sets.values()] == [12, 12, 12, 12, 12]
|