(mesh)
| 36 | |
| 37 | @pytest.fixture |
| 38 | def Q(mesh): |
| 39 | W = element( |
| 40 | "Lagrange", mesh.basix_cell(), 1, shape=(mesh.geometry.dim,), dtype=default_real_type |
| 41 | ) |
| 42 | V = element("Lagrange", mesh.basix_cell(), 1, dtype=default_real_type) |
| 43 | return functionspace(mesh, mixed_element([W, V])) |
| 44 | |
| 45 | |
| 46 | @pytest.fixture |
nothing calls this directly
no test coverage detected