On 4/20/23 02:57, Vidyesh Dapse wrote:

I want a method that can give me a flag indicating "whether a given face of a particular cell requires ghost data for computation of face integral?"

This can only happen if you are on a locally owned cell and the neighboring cell (across from the face you are considering) is a ghost cell. So the condition would be
  if (cell->is_locally_owned() && cell->neighbor(f)->is_ghost())
or something like this.

Best
 W.

--
------------------------------------------------------------------------
Wolfgang Bangerth          email:                 [email protected]
                           www: http://www.math.colostate.edu/~bangerth/


--
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/47e3d5bb-06bd-337d-2f18-664fa71858f9%40colostate.edu.

Reply via email to