element = MixedElement([P, Q, W])
V = FunctionSpace(mesh, element)
a # a bilinear form
L # a linear form
u = Function(V)**
solve(a == L, u, bc)
But now if I use some other way to solve, like below:
A = assemble(a)
b = assemble(L)
If I get the solution to the problem A*x = b, how can I get u and p,q,w = split(u), plot(u) ?
Thanks very much !!!