Skip to content

Commit

Permalink
Set verify_holes to false in FPG subgenerator call, refs #28316
Browse files Browse the repository at this point in the history
  • Loading branch information
shikhar413 committed Aug 6, 2024
1 parent 8434346 commit e80e72d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions modules/reactor/src/meshgenerators/AssemblyMeshGenerator.C
Original file line number Diff line number Diff line change
Expand Up @@ -531,6 +531,7 @@ AssemblyMeshGenerator::generateFlexibleAssemblyBoundaries()
params.set<boundary_id_type>("external_boundary_id") = _assembly_boundary_id;
params.set<BoundaryName>("external_boundary_name") = _assembly_boundary_name;
params.set<SubdomainName>("background_subdomain_name") = block_to_delete + "_TRI";
params.set<bool>("verify_holes") = false;
params.set<unsigned short>("background_subdomain_id") = RGMB::ASSEMBLY_BLOCK_ID_TRI_FLEXIBLE;

addMeshSubgenerator("FlexiblePatternGenerator", name() + "_fpg", params);
Expand Down
1 change: 1 addition & 0 deletions modules/reactor/src/meshgenerators/PinMeshGenerator.C
Original file line number Diff line number Diff line change
Expand Up @@ -512,6 +512,7 @@ PinMeshGenerator::generateFlexibleAssemblyBoundaries()
params.set<std::vector<unsigned int>>("extra_positions_mg_indices") = {0};
}
params.set<bool>("use_auto_area_func") = true;
params.set<bool>("verify_holes") = false;
params.set<MooseEnum>("boundary_type") = (_mesh_geometry == "Hex") ? "HEXAGON" : "CARTESIAN";
params.set<unsigned int>("boundary_sectors") =
getReactorParam<unsigned int>(RGMB::num_sectors_flexible_stitching);
Expand Down

0 comments on commit e80e72d

Please sign in to comment.