Lines Matching refs:coordsNew
1164 Vec coordsOld, coordsNew; in DMSetCoordinateDisc() local
1170 PetscCall(DMCreateLocalVector(cdmNew, &coordsNew)); in DMSetCoordinateDisc()
1171 PetscCall(PetscObjectSetName((PetscObject)coordsNew, "coordinates")); in DMSetCoordinateDisc()
1174 PetscCall(VecCopy(coordsOld, coordsNew)); in DMSetCoordinateDisc()
1184 PetscCall(DMProjectFieldLocal(cdmNew, 0.0, NULL, funcs, INSERT_VALUES, coordsNew)); in DMSetCoordinateDisc()
1188 PetscCall(DMSetCoordinatesLocal(dm, coordsNew)); in DMSetCoordinateDisc()
1189 PetscCall(VecDestroy(&coordsNew)); in DMSetCoordinateDisc()
1192 PetscCall(DMCreateGlobalVector(cdmNew, &coordsNew)); in DMSetCoordinateDisc()
1195 PetscCall(VecCopy(coordsOld, coordsNew)); in DMSetCoordinateDisc()
1200 PetscCall(MatMult(In, coordsOld, coordsNew)); in DMSetCoordinateDisc()
1203 PetscCall(DMSetCoordinates(dm, coordsNew)); in DMSetCoordinateDisc()
1204 PetscCall(VecDestroy(&coordsNew)); in DMSetCoordinateDisc()