Hi, everyone, I have a quick question. Is there a way to assign values between different meshes but same domains? See the following simple example:
from dolfin import *
mesh1=UnitSquareMesh(1,1)
mesh2=UnitSquareMesh(5,5)
V1=FunctionSpace(mesh1,'CG',1)
V2=FunctionSpace(mesh2,'CG',1)
u1=interpolate(Constant(0),V1)
u2=Function(V2)
# Then how to assign the value of u1 to u2 without changing u2's FunctionSpace?