Skip to content

Commit 399dc5f

Browse files
committed
Print sideset names when verbose stitching
1 parent c256d23 commit 399dc5f

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

src/mesh/unstructured_mesh.C

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1940,9 +1940,13 @@ void UnstructuredMesh::stitching_helper (const MeshBase * other_mesh,
19401940
{
19411941
libMesh::out << "In UnstructuredMesh::stitch_meshes:\n"
19421942
<< "This mesh has " << this_boundary_node_ids.size()
1943-
<< " nodes on boundary " << this_mesh_boundary_id << ".\n"
1943+
<< " nodes on boundary `"
1944+
<< this->get_boundary_info().get_sideset_name(this_mesh_boundary_id)
1945+
<< "' (" << this_mesh_boundary_id << ").\n"
19441946
<< "Other mesh has " << other_boundary_node_ids.size()
1945-
<< " nodes on boundary " << other_mesh_boundary_id << ".\n";
1947+
<< " nodes on boundary `"
1948+
<< this->get_boundary_info().get_sideset_name(other_mesh_boundary_id)
1949+
<< "' (" << other_mesh_boundary_id << ").\n";
19461950

19471951
if (h_min_updated)
19481952
{

0 commit comments

Comments
 (0)