forked from nschloe/meshio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_mesh.py
66 lines (49 loc) · 1.71 KB
/
test_mesh.py
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
import copy
import sys
import numpy
import pytest
import helpers
import meshio
def test_public_attributes():
# Just make sure this is here
meshio.extension_to_filetype
def test_print_prune():
mesh = copy.deepcopy(helpers.tri_mesh)
print(mesh)
mesh.prune()
def test_cells_dict():
mesh = copy.deepcopy(helpers.tri_mesh)
assert len(mesh.cells_dict) == 1
assert numpy.array_equal(mesh.cells_dict["triangle"], [[0, 1, 2], [0, 2, 3]])
# two cells groups
mesh = meshio.Mesh(
numpy.array(
[[0.0, 0.0, 0.0], [1.0, 0.0, 0.0], [1.0, 1.0, 0.0], [0.0, 1.0, 0.0]]
)
/ 3,
[
("triangle", numpy.array([[0, 1, 2]])),
("triangle", numpy.array([[0, 2, 3]])),
],
cell_data={"a": [[0.5], [1.3]]},
)
assert len(mesh.cells_dict) == 1
assert numpy.array_equal(mesh.cells_dict["triangle"], [[0, 1, 2], [0, 2, 3]])
assert numpy.array_equal(mesh.cell_data_dict["a"]["triangle"], [0.5, 1.3])
@pytest.mark.skipif(sys.version_info < (3, 6), reason="requires Python 3.6 or higher")
def test_sets_to_int_data():
mesh = helpers.add_cell_sets(helpers.tri_mesh)
mesh.sets_to_int_data()
assert "grain0-grain1" in mesh.cell_data
assert numpy.all(mesh.cell_data["grain0-grain1"][0] == [0, 1])
def test_int_data_to_sets():
mesh = helpers.tri_mesh
mesh.cell_data = {"grain0-grain1": [numpy.array([0, 1])]}
mesh.int_data_to_sets()
assert "grain0" in mesh.cell_sets
assert numpy.all(mesh.cell_sets["grain0"][0] == [0])
assert "grain1" in mesh.cell_sets
assert numpy.all(mesh.cell_sets["grain1"][0] == [1])
if __name__ == "__main__":
# test_sets_to_int_data()
test_int_data_to_sets()