On 4/9/19 2:23 AM, Anton wrote: > > Thank you for the help. I think I have it working in the non-distributed > case, but project_boundary_values segfaults on me without any explanations > (compiled in debug mode) when run with a distributed triangulation. Is this > "normal"?
Ah, good point. The function may not be intended (so far) for the parallel case. Do you think you can come up with a minimal example that shows the segfault? The root of the issue is that you are using a DG element. For those elements, the projection is local on each face, and I think it would probably not be terribly difficult to implement by hand given that there is no function right now that does what you want. Have you thought about doing that? It may be useful to then put that into the library. 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]. For more options, visit https://groups.google.com/d/optout.
