Q_el = element("BDMCF", msh.basix_cell(), k)
P_el = element("DG", msh.basix_cell(), k - 1)
V_el = mixed_element([Q_el, P_el])
V = fem.functionspace(msh, V_el)
I was wondering how to define mixedfunctionspace when one field is solved in the entire mesh and the other field is solved only in the submesh.
Can anyone give me some advice?
Thanks.