> I want to loop over all faces, obtain the vertices belonging to that > face and then determine the dof of the vertex, i.e. for linear shape > functions in the end the index in the solution vector which is > associated with that node. > Once accessing the faces with DoFHandler<dim>::active_face_iterator, I > can only access the coordinates of the respective vertices. Instead, > looping over the vertices is not an option because I need information > on all vertices belonging to the same face. > Is there a way to do this?
cell->face(f)->vertex_dof_index(i,c) should work, as should cell->face(f)->get_dof_indices(...) W. ------------------------------------------------------------------------- Wolfgang Bangerth email: [email protected] www: http://www.math.tamu.edu/~bangerth/ _______________________________________________ dealii mailing list http://poisson.dealii.org/mailman/listinfo/dealii
