Hi.
I am trying to extract the x and y coordinates of a mesh and align them with the dof structure. Some of the code is
meshgrid = RectangleMesh(p1, p2, 22, 11, "right")
F = VectorFunctionSpace(meshgrid, "CG", 1)
dim =F.dim()
N = meshgrid.geometry().dim()
coor = F.dofmap().tabulate_all_coordinates(meshgrid).reshape(dim,N)
fx_dofs=F.sub(0).dofmap().dofs()
fy_dofs=F.sub(1).dofmap().dofs()
Where I have specified the points p1 and p2 beforehand. When I try to run this code I get the error message: 'GenericDofMap' object has no attribute 'tabulate_all_coordinates'.
Is this attribute removed from the new FEniCS version or has it been replaced by something else?