Hi,
Is it possible to access a specific element within a parallel distributed
triangulation by means of the following procedure for instance:
typename DoFHandler<dim>::active_cell_iterator cell =
dof_handler.begin_active(), endc = dof_handler.end();
for (; cell != endc; ++cell)
{
if (cell->is_locally_owned())
{
std::cout << "CELL NUMBER 4 VERTEX 1: " << cell(4)->vertex(0) << std::endl;
}
}
The above won't compile.
How am I able to access for example element number 4 in order to obtain the
coordinates of point 1 within the element.
Kind regards,
S. A. Mohseni
--
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.