Hello! I am trying to make a mixed function space of the following …
V = VectorFunctionSpace(mesh, "Lagrange", 2)
P = FunctionSpace(mesh, "Lagrange", 1)
The old FEniCS supported
W = MixedFunctionSpace([V, P]),
but this format no longer works. Does anybody know how this would be translated into the current edition?