> I am a new user of the deal.II library, and sorry if this question has > been already discussed. The template FEValues has a good function > get_quadrature_points() which could be used by Function.value_list to > get Function values at all quadrature points over the cell. Why the > similar function get_face_quadrature_points() is absent in the > template FEFaceValues?
get_quadrature_points() is in FEValuesBase, i.e. the base class of both FEValues and FEFaceValues. As a consequence, you can also call it on FEFaceValues objects and it does exactly what you want. Best W. ------------------------------------------------------------------------- Wolfgang Bangerth email: [email protected] www: http://www.math.tamu.edu/~bangerth/ _______________________________________________
