How to translate a 2D mesh by a vector?

ALE.move implicitly moves your mesh, and does not return any field.
If you want to integrate over the new coordinates of the mesh, I suggest you use ALE.move to move your mesh, and then use

x=SpatialCoordinate(mesh)
phi = as_vector((x[0], x[1], x[2]))
1 Like