Thanks Praveen. It was resolved. On Thursday, 16 December 2021 at 13:31:13 UTC Praveen C wrote:
> There is a small error in this code. > > > On 16-Dec-2021, at 5:43 PM, Masoud Ahmadi <[email protected]> wrote: > > for (const auto &cell : dof_handler.active_cell_iterators()){ > for (const auto &face : cell->face_iterators()){ > if (face->at_boundary()){ > for (const auto v : face->vertex_indices()) > *cout<<cell->vertex(v)<<" ";* > cout<<endl; > } > } > } > > > > cout<<*cell*->vertex(v)<<" “; > > > should be > > cout<<*face*->vertex(v)<<" “; > > > best > 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]. To view this discussion on the web visit https://groups.google.com/d/msgid/dealii/d15aad58-5dc4-41cf-9ffa-d73f92a0bb85n%40googlegroups.com.
