Skip to content

Commit b8a65c3

Browse files
committed
Update libmesh
We did this tmp update to check if the code still works
1 parent 7477352 commit b8a65c3

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

conda/libmesh/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Do not use jinja templating (A physical change to this file is required to trigger a build)
2-
{% set build = 1 %}
2+
{% set build = 0 %}
33
{% set strbuild = "build_" + build|string %}
4-
{% set version = "2022.03.28" %}
4+
{% set version = "2022.04.05" %}
55

66
package:
77
name: moose-libmesh

conda/mpich/conda_build_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
## Any changes made will require additional changes to any item above that.
33

44
moose_libmesh:
5-
- moose-libmesh 2022.03.28 build_1
5+
- moose-libmesh 2022.04.05 build_0
66

77
SHORT_VTK_NAME:
88
- 9.1

framework/src/userobject/ElementSubdomainModifier.C

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ ElementSubdomainModifier::setMovingBoundaryName(MooseMesh & mesh)
6666
mesh.setBoundaryName(_moving_boundary_id, _moving_boundary_name);
6767
mesh.getMesh().get_boundary_info().sideset_name(_moving_boundary_id) = _moving_boundary_name;
6868
mesh.getMesh().get_boundary_info().nodeset_name(_moving_boundary_id) = _moving_boundary_name;
69+
mesh.getMesh().get_boundary_info().allow_children_on_boundary_side(true);
6970
}
7071

7172
void
@@ -273,7 +274,9 @@ ElementSubdomainModifier::updateBoundaryInfo(MooseMesh & mesh,
273274
_moving_boundary_subdomains.end() &&
274275
_moving_boundary_subdomains.find(elem->subdomain_id()) !=
275276
_moving_boundary_subdomains.end()))
276-
bnd_info.add_side(elem, side, _moving_boundary_id);
277+
{
278+
bnd_info.add_side(elem, side, _moving_boundary_id);
279+
}
277280
}
278281
}
279282
/* If elem's neighbor is not active, we need to check family members of the neighbor.

libmesh

Submodule libmesh updated 308 files

test/tests/userobjects/element_subdomain_modifier/tests

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
adaptivity_moving_boundary_out.e-s002 adaptivity_moving_boundary_out.e-s003 adaptivity_moving_boundary_out.e-s004
6161
adaptivity_moving_boundary_out.e-s005 adaptivity_moving_boundary_out.e-s006 adaptivity_moving_boundary_out.e-s007
6262
adaptivity_moving_boundary_out.e-s008 adaptivity_moving_boundary_out.e-s009 adaptivity_moving_boundary_out.e-s010'
63-
63+
mesh_mode = 'REPLICATED'
6464
requirement = 'The framework shall support adaptive mesh refinement in the element subdomain modifier'
6565
[]
6666

@@ -70,15 +70,15 @@
7070
exodiff = 'adaptivity_moving_boundary_3d_out.e
7171
adaptivity_moving_boundary_3d_out.e-s002 adaptivity_moving_boundary_3d_out.e-s003 adaptivity_moving_boundary_3d_out.e-s004
7272
adaptivity_moving_boundary_3d_out.e-s005 adaptivity_moving_boundary_3d_out.e-s006'
73-
73+
mesh_mode = 'REPLICATED'
7474
requirement = 'The framework shall support adaptive mesh refinement in the element subdomain modifier for 3D problems'
7575
[]
7676

7777
[amr_bc]
7878
type = 'Exodiff'
7979
input = 'amr_bc.i'
8080
exodiff = 'amr_bc_out.e amr_bc_out.e-s002 amr_bc_out.e-s003 amr_bc_out.e-s004 amr_bc_out.e-s005 amr_bc_out.e-s006'
81-
81+
mesh_mode = 'REPLICATED'
8282
requirement = 'The framework shall support applying nodal BCs on the moving boundary with AMR in the element subdomain modifier'
8383
[]
8484

@@ -88,7 +88,7 @@
8888
cli_args = "BCs/active='mbc leftright' Outputs/file_base=amr_integral_bc_out"
8989
exodiff = 'amr_integral_bc_out.e amr_integral_bc_out.e-s002
9090
amr_integral_bc_out.e-s003 amr_integral_bc_out.e-s004 amr_integral_bc_out.e-s005 amr_integral_bc_out.e-s006'
91-
91+
mesh_mode = 'REPLICATED'
9292
requirement = 'The framework shall support applying integral BCs on the moving boundary with AMR in the element subdomain modifier'
9393
[]
9494
[]

0 commit comments

Comments
 (0)