Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/mesh/unstructured_mesh.C
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ void UnstructuredMesh::create_submesh (UnstructuredMesh& new_mesh,
new_node_numbers[old_elem->node(n)] = n_new_nodes;

// Add this node to the new mesh
new_mesh.add_point (old_elem->point(n));
new_mesh.add_point (old_elem->point(n), n_new_nodes);

// Increment the new node counter
n_new_nodes++;
Expand Down