Hi,
Is it possible to assign an expression to a Function defined on a FunctionSpace?
E.g. With the following
mesh = UnitSquareMesh(32, 32)
V = FunctionSpace(mesh, "CG", 1)
u = Function(V)
f = Expression("x[0]+x[1]")
Is there a way to assign u the expression f, while still keeping u a Function()?