Hi,
ive been trying to set a function space with DGT elements but i get an error.
Calling:
M_element = ufl.FiniteElement('DGT', mesh.ufl_cell(), 1)
M = dolfinx.fem.functionspace(mesh, M_element)
results in:
ValueError: Unknown element family: HDiv Trace with cell type triangle
and calling the:
M_element = basix.ufl.element("DGT", mesh.basix_cell(), 1)
results in:
ValueError: Unknown element family: DGT with cell type triangle
Any suggestions?