Till, > While iterating locally over the dofs inside a cell: Is there a quick / > simple way to get the (real space) position of the degree of freedom by its > local number?
Yes. Btw, we call these locations "support points", and there is a function that computes them for all DoFs at once: DoFTools::map_dofs_to_support_points If you need this information for a single cell, you may want to look at the implementation of this function in deal.II/source/dofs/dof_tools.cc, around line 5150. Best W. -- ------------------------------------------------------------------------- Wolfgang Bangerth email: [email protected] www: http://www.math.tamu.edu/~bangerth/ _______________________________________________ dealii mailing list http://poisson.dealii.org/mailman/listinfo/dealii
