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 On Friday, July 14, 2017 at 10:10:26 AM UTC+1, Chuyi Duan wrote: > > Dear all, > > I'm using a struct to store informations on each integration point, by > generating an output file I can only get a mean value of the points in a > cell (.vtk file), it looks so "coarse" but it is actually not. So what I > want to do is to output the stored stuffs on each points. > I've only found function attach_dof_handler(dof_handler_type) and > attach_triangulation(triangulation_type). I'd like to ask if there is any > possibility to creat a output file in that I can see how the integration > points look like. > > Best, > Chuyi > -- The deal.II project is located at http://www.dealii.org/ For mailing list/forum options, see https://groups.google.com/d/forum/dealii?hl=en --- You received this message because you are subscribed to the Google Groups "deal.II User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
