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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
# Copyright (c) 2020 Chris Richardson
# FEniCS Project
# SPDX-License-Identifier: MIT
import basix
import pytest
import numpy as np
@pytest.mark.parametrize("order", [1, 2, 3])
def test_quad(order):
Lpts, Lwts = basix.make_quadrature("default", basix.CellType.interval, 2*order + 1)
Qwts = []
Qpts = []
for p, u in zip(Lpts, Lwts):
for q, v in zip(Lpts, Lwts):
Qpts.append([p[0], q[0]])
Qwts.append(u * v)
basis = basix.tabulate_polynomial_set(basix.CellType.quadrilateral,
order, 0, Qpts)[0]
ndofs = basis.shape[1]
mat = np.zeros((ndofs, ndofs))
for i in range(ndofs):
for j in range(ndofs):
mat[i, j] = sum(basis[:, i] * basis[:, j] * Qwts)
np.set_printoptions(suppress=True)
print(mat, np.eye(mat.shape[0]))
assert(np.isclose(mat * 4.0, np.eye(mat.shape[0])).all())
@pytest.mark.parametrize("order", [1, 2, 3, 4])
def test_pyramid(order):
Lpts, Lwts = basix.make_quadrature("default", basix.CellType.interval, 4*order + 2)
Qwts = []
Qpts = []
for p, u in zip(Lpts, Lwts):
for q, v in zip(Lpts, Lwts):
for r, w in zip(Lpts, Lwts):
sc = (1.0 - r[0])
Qpts.append([p[0] * sc, q[0] * sc, r[0]])
Qwts.append(u * v * sc * sc * w)
basis = basix.tabulate_polynomial_set(basix.CellType.pyramid,
order, 0, Qpts)[0]
ndofs = basis.shape[1]
mat = np.zeros((ndofs, ndofs))
for i in range(ndofs):
for j in range(ndofs):
mat[i, j] = sum(basis[:, i] * basis[:, j] * Qwts)
np.set_printoptions(suppress=True, linewidth=220)
print(mat)
assert(np.isclose(mat * 8.0, np.eye(mat.shape[0])).all())
@pytest.mark.parametrize("order", [1, 2, 3])
def test_hex(order):
Lpts, Lwts = basix.make_quadrature("default", basix.CellType.interval, 2*order + 1)
Qwts = []
Qpts = []
for p, u in zip(Lpts, Lwts):
for q, v in zip(Lpts, Lwts):
for r, w in zip(Lpts, Lwts):
Qpts.append([p[0], q[0], r[0]])
Qwts.append(u * v * w)
basis = basix.tabulate_polynomial_set(basix.CellType.hexahedron,
order, 0, Qpts)[0]
ndofs = basis.shape[1]
mat = np.zeros((ndofs, ndofs))
for i in range(ndofs):
for j in range(ndofs):
mat[i, j] = sum(basis[:, i] * basis[:, j] * Qwts)
np.set_printoptions(suppress=True)
print(mat)
assert(np.isclose(mat * 8.0, np.eye(mat.shape[0])).all())
@pytest.mark.parametrize("order", [1, 2, 3])
def test_prism(order):
Tpts, Twts = basix.make_quadrature("default", basix.CellType.triangle, 2*order + 1)
Lpts, Lwts = basix.make_quadrature("default", basix.CellType.interval, 2*order + 1)
Qwts = []
Qpts = []
for p, u in zip(Tpts, Twts):
for q, v in zip(Lpts, Lwts):
Qpts.append([p[0], p[1], q[0]])
Qwts.append(u * v)
basis = basix.tabulate_polynomial_set(basix.CellType.prism,
order, 0, Qpts)[0]
ndofs = basis.shape[1]
mat = np.zeros((ndofs, ndofs))
for i in range(ndofs):
for j in range(ndofs):
mat[i, j] = sum(basis[:, i] * basis[:, j] * Qwts)
np.set_printoptions(suppress=True)
print(mat)
assert(np.isclose(mat * 8.0, np.eye(mat.shape[0])).all())
@pytest.mark.parametrize("cell_type", [basix.CellType.interval,
basix.CellType.triangle,
basix.CellType.tetrahedron])
@pytest.mark.parametrize("order", [0, 1, 2, 3, 4])
def test_cell(cell_type, order):
Qpts, Qwts = basix.make_quadrature("default", cell_type, 2*order + 1)
basis = basix.tabulate_polynomial_set(cell_type, order, 0, Qpts)[0]
ndofs = basis.shape[1]
mat = np.zeros((ndofs, ndofs))
for i in range(ndofs):
for j in range(ndofs):
mat[i, j] = sum(basis[:, i] * basis[:, j] * Qwts)
np.set_printoptions(suppress=True)
print(mat)
pts = basix.create_lattice(cell_type, 1, basix.LatticeType.equispaced, True)
fac = 2 ** pts.shape[0] / 2
assert(np.isclose(mat * fac, np.eye(mat.shape[0])).all())
|