Hello, In the DG flux formulation of a 2D Stokes problem there are 3 unknows: (u,p,m) where u is a 2D vector, p is a scalar and m a 2x2 matrix. How should I define the function space here ?
Thanks.
U = VectorFunctionSpace(mesh, Ufamily, Udegree) P = FunctionSpace(mesh, Pfamily, Pdegree) M = TensorFunctionSpace(mesh, Mfamily, Mdegree, symmetry=False) W = MixedFunctionSpace([U, P, M])
Many thanks !