On 12/9/24 08:46, Rishabh Saxena wrote:
                   cell.vertices = {vertex_map[std::make_tuple(i, j, k)],

>[...]

When I compile the code, I get the following errors:

/home/saxenar/local/programs/tortuosity_github/source/ tortuosity_parallel_FDM_discriptor_MPI.cc:957:26: Fehler: »struct dealii::TriangulationDescription::CellData<3>« hat kein Element namens »vertices«

Rishabh:
the error message says that TriangulationDescription::CellData simply does not have member variables 'vertices', 'material_id', etc., and that is true: https://dealii.org/developer/doxygen/deal.II/structTriangulationDescription_1_1CellData.html The general description of the class also explains why it does not need to store the geometric information you are trying to describe.

I believe that Peter Munch posted a piece of code here on this forum a while ago that creates an xyz-uniform fully distributed triangulation like the one you are setting up here. You might want to search through the archive and see if you can find it!

Best
 WB

--
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 dealii+unsubscr...@googlegroups.com.
To view this discussion visit 
https://groups.google.com/d/msgid/dealii/14fb678f-ffb8-40c1-abce-29bec8078fee%40colostate.edu.

Reply via email to