We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b36833 commit f763dc9Copy full SHA for f763dc9
grudge/trace_pair.py
@@ -395,6 +395,14 @@ def local_inter_volume_trace_pairs(
395
result: Mapping[Tuple[DOFDesc, DOFDesc], TracePair] = {}
396
397
for vol_dd_pair, vol_data_pair in pairwise_volume_data.items():
398
+ from meshmode.mesh import mesh_has_boundary
399
+ if not mesh_has_boundary(
400
+ dcoll.discr_from_dd(vol_dd_pair[0]).mesh,
401
+ BTAG_PARTITION(
402
+ dcoll._part_id_helper.make(
403
+ rank, vol_dd_pair[1].domain_tag.tag))):
404
+ continue
405
+
406
directional_vol_dd_pairs = [
407
(vol_dd_pair[1], vol_dd_pair[0]),
408
(vol_dd_pair[0], vol_dd_pair[1])]
0 commit comments