Dear all Suppose I have
FE_Q<dim> fe(degree); QGaussLobatto<dim> quad(degree+1); Within a cell, I get FEValues<dim> fe_values(quad, update_quadrature_points); fe_values.reinit(cell); cell->get_dof_indices(local_dof_indices); Then can I assume that, in the current cell, solution(local_dof_indices[q]) is the solution at fe_values.quadrature_point(q) ? This is the case with DG spaces and I use this all the time. But I am not sure about FE_Q. Thanks praveen -- 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.
