Skip to content

Commit e30874d

Browse files
authored
Merge pull request #30291 from DanielYankura/overwriting_existing_nodeset
Changes several tests so that they still pass with new libmesh feature
2 parents e50d7a5 + 4e20226 commit e30874d

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

framework/src/meshgenerators/AdvancedExtruderGenerator.C

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -491,10 +491,12 @@ AdvancedExtruderGenerator::generate()
491491
boundary_info.add_node(new_node, ids_to_copy);
492492
else
493493
for (const auto & id_to_copy : ids_to_copy)
494+
{
494495
boundary_info.add_node(new_node,
495496
_boundary_swap_pairs[e].count(id_to_copy)
496497
? _boundary_swap_pairs[e][id_to_copy]
497498
: id_to_copy);
499+
}
498500

499501
old_distance = current_distance;
500502
current_node_layer++;
3.45 KB
Binary file not shown.

test/tests/mesh/named_entities/named_entities.xda

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ left_side top_right right_side
126126
23 5 3
127127
2 # nodeset id to name map
128128
2 # vector length
129-
1 2
129+
1 3
130130
2 # vector length
131131
left_nodes right_nodes
132132
18 # number of nodesets
@@ -139,12 +139,12 @@ left_nodes right_nodes
139139
12 1
140140
13 1
141141
16 1
142-
54 2
143-
55 2
144-
56 2
145-
57 2
146-
58 2
147-
59 2
148-
60 2
149-
61 2
150-
62 2
142+
54 3
143+
55 3
144+
56 3
145+
57 3
146+
58 3
147+
59 3
148+
60 3
149+
61 3
150+
62 3

test/tests/meshgenerators/advanced_extruder_generator/tests

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@
120120
requirement = 'The system shall be able to retain and swap boundary ids during extrusion.'
121121
design = 'AdvancedExtruderGenerator.md'
122122
issues = '#21852'
123+
skip = 'Pending libmesh PR #4121 being merged'
123124
[]
124125
[helicoidal]
125126
type = Exodiff

0 commit comments

Comments
 (0)