Skip to content

Commit

Permalink
Update libmesh
Browse files Browse the repository at this point in the history
We did this tmp update to check if the code still works
  • Loading branch information
fdkong committed Apr 8, 2022
1 parent 9b24c46 commit f2de942
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
4 changes: 2 additions & 2 deletions conda/libmesh/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Do not use jinja templating (A physical change to this file is required to trigger a build)
{% set build = 2 %}
{% set build = 0 %}
{% set strbuild = "build_" + build|string %}
{% set version = "2022.03.28" %}
{% set version = "2022.04.05" %}

package:
name: moose-libmesh
Expand Down
2 changes: 1 addition & 1 deletion conda/mpich/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## Any changes made will require additional changes to any item above that.

moose_libmesh:
- moose-libmesh 2022.03.28 build_2
- moose-libmesh 2022.04.05 build_0

SHORT_VTK_NAME:
- 9.1
Expand Down
3 changes: 3 additions & 0 deletions framework/src/userobject/ElementSubdomainModifier.C
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ ElementSubdomainModifier::setMovingBoundaryName(MooseMesh & mesh)
mesh.setBoundaryName(_moving_boundary_id, _moving_boundary_name);
mesh.getMesh().get_boundary_info().sideset_name(_moving_boundary_id) = _moving_boundary_name;
mesh.getMesh().get_boundary_info().nodeset_name(_moving_boundary_id) = _moving_boundary_name;
mesh.getMesh().get_boundary_info().allow_children_on_boundary_side(true);
}

void
Expand Down Expand Up @@ -273,7 +274,9 @@ ElementSubdomainModifier::updateBoundaryInfo(MooseMesh & mesh,
_moving_boundary_subdomains.end() &&
_moving_boundary_subdomains.find(elem->subdomain_id()) !=
_moving_boundary_subdomains.end()))
{
bnd_info.add_side(elem, side, _moving_boundary_id);
}
}
}
/* If elem's neighbor is not active, we need to check family members of the neighbor.
Expand Down
2 changes: 1 addition & 1 deletion libmesh
Submodule libmesh updated 308 files
8 changes: 4 additions & 4 deletions test/tests/userobjects/element_subdomain_modifier/tests
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
adaptivity_moving_boundary_out.e-s002 adaptivity_moving_boundary_out.e-s003 adaptivity_moving_boundary_out.e-s004
adaptivity_moving_boundary_out.e-s005 adaptivity_moving_boundary_out.e-s006 adaptivity_moving_boundary_out.e-s007
adaptivity_moving_boundary_out.e-s008 adaptivity_moving_boundary_out.e-s009 adaptivity_moving_boundary_out.e-s010'

mesh_mode = 'REPLICATED'
requirement = 'The framework shall support adaptive mesh refinement in the element subdomain modifier'
[]

Expand All @@ -70,15 +70,15 @@
exodiff = 'adaptivity_moving_boundary_3d_out.e
adaptivity_moving_boundary_3d_out.e-s002 adaptivity_moving_boundary_3d_out.e-s003 adaptivity_moving_boundary_3d_out.e-s004
adaptivity_moving_boundary_3d_out.e-s005 adaptivity_moving_boundary_3d_out.e-s006'

mesh_mode = 'REPLICATED'
requirement = 'The framework shall support adaptive mesh refinement in the element subdomain modifier for 3D problems'
[]

[amr_bc]
type = 'Exodiff'
input = 'amr_bc.i'
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'

mesh_mode = 'REPLICATED'
requirement = 'The framework shall support applying nodal BCs on the moving boundary with AMR in the element subdomain modifier'
[]

Expand All @@ -88,7 +88,7 @@
cli_args = "BCs/active='mbc leftright' Outputs/file_base=amr_integral_bc_out"
exodiff = 'amr_integral_bc_out.e amr_integral_bc_out.e-s002
amr_integral_bc_out.e-s003 amr_integral_bc_out.e-s004 amr_integral_bc_out.e-s005 amr_integral_bc_out.e-s006'

mesh_mode = 'REPLICATED'
requirement = 'The framework shall support applying integral BCs on the moving boundary with AMR in the element subdomain modifier'
[]
[]

0 comments on commit f2de942

Please sign in to comment.