Hello, how can one interpolate the norm of a vector function to a scalar function in dolfinx?
A function u_vec defined on VectorSpace is solved in advance, defined as:
V = FunctionSpace(mesh, ("N1curl",1))
u_vec = Function(V)
and I’d like to compute it’s L2 norm defined on:
W = FunctionSpace(mesh, ("Lagrange",1))
u_norm = Function(W)