Hi
I dont know if I understand your request correctly, but I guess you want to output vertices(Nodes) and its associated solution/result right?
If this is correct, then following might help you:
make sure you are using shared or general triangulation without refinement by deal.ii
if you are using general triangulation, then
const std::vector< Point<dim> > &vertices = triangulation.get_vertices();
then a for loop will do the trick to get coordinates of vertices and output/result vector at the same time. (all the vector can be actually looped though the same technique)
if you are using shared triangulation, then you might need to hack deal.ii (it is possible)
All best,
YC Chen