diff --git a/modules/reactor/include/meshgenerators/PinMeshGenerator.h b/modules/reactor/include/meshgenerators/PinMeshGenerator.h index f8dea7928b..4e8ea9fe90 100644 --- a/modules/reactor/include/meshgenerators/PinMeshGenerator.h +++ b/modules/reactor/include/meshgenerators/PinMeshGenerator.h @@ -41,8 +41,8 @@ protected: * @param csg_obj Reference to CSGBase object for adding defined surfaces to * @return vector of surfaces that correspond to hexagonal or square region */ - std::vector> getOuterRadialSurfaces( - unsigned int radial_index, Real halfpitch, CSG::CSGBase & csg_obj); + std::vector> + getOuterRadialSurfaces(unsigned int radial_index, Real halfpitch, CSG::CSGBase & csg_obj); /** * Get inner region of given surfaces, defined as the intersection diff --git a/modules/reactor/src/meshgenerators/PinMeshGenerator.C b/modules/reactor/src/meshgenerators/PinMeshGenerator.C index b43b589f70..04c898ac98 100644 --- a/modules/reactor/src/meshgenerators/PinMeshGenerator.C +++ b/modules/reactor/src/meshgenerators/PinMeshGenerator.C @@ -743,7 +743,8 @@ PinMeshGenerator::generateCSG() } else { - // For all other regions, the radial region is the intersection of inner_region and outer_region + // For all other regions, the radial region is the intersection of inner_region and + // outer_region outer_region = ~inner_region; inner_region = getInnerRegion(radial_surfaces); radial_region = inner_region & outer_region; @@ -813,8 +814,8 @@ PinMeshGenerator::generateCSG() std::vector> PinMeshGenerator::getOuterRadialSurfaces(unsigned int radial_index, - Real halfpitch, - CSG::CSGBase & csg_obj) + Real halfpitch, + CSG::CSGBase & csg_obj) { std::vector> duct_surfaces; auto n_surfaces = _mesh_geometry == "Square" ? 4 : 6;