24 "trim_peripheral_region",
25 std::vector<unsigned short>(6, 0),
26 "trim_peripheral_region<=1",
27 "Whether the peripheral region on each of the six sides will be trimmed "
29 "mesh. See documentation for numbering convention.");
32 "across-center (0, 0, 0) trimming for "
33 "assembly or core 2D meshes generated by PatternedHexMG.");
53 "this parameter must be provided along with center_trim_ending_index.");
61 "the remaining mesh after center trimming defined by this parameter and "
62 "center_trim_ending_index must be equal or smaller than half of the input mesh.");
65 "this input parameter is not used if center trimming is not "
69std::unique_ptr<MeshBase>
73 if (hasMeshProperty<bool>(
"hexagon_peripheral_trimmability",
_input_name) &&
74 hasMeshProperty<bool>(
"hexagon_center_trimmability",
_input_name))
76 if (!getMeshProperty<bool>(
"hexagon_peripheral_trimmability",
_input_name) &&
78 paramError(
"input",
"The input mesh does not have a trimmable peripheral region.");
79 if (!getMeshProperty<bool>(
"hexagon_center_trimmability",
_input_name) &&
81 paramError(
"input",
"The input mesh cannot be trimmed through its center.");
85 "The input mesh is not compatible with HexagonMeshTrimmer because "
86 "the trimmability mesh meta data are absent.");
registerMooseObject("ReactorApp", HexagonMeshTrimmer)
This HexagonMeshTrimmer object takes in a hexagonal assembly or core mesh and perform peripheral and/...
std::unique_ptr< MeshBase > generate() override
static InputParameters validParams()
HexagonMeshTrimmer(const InputParameters ¶meters)
void paramError(const std::string ¶m, Args... args) const
bool isParamValid(const std::string &name) const
This PolygonMeshTrimmerBase is the base class for CartesianMeshTrimmer and HexagonMeshTrimmer,...
unsigned short _center_trim_sector_number
Number of remaining sectors.
const MeshGeneratorName _input_name
Input mesh to be modified.
const BoundaryName _center_trimming_section_boundary
Name of the section formed by center trimming.
unsigned int _num_sides
Number of polygon sides.
std::unique_ptr< MeshBase > generate() override
std::vector< unsigned short > _trim_peripheral_region
Index of the peripheral regions to be trimmed (see moosedocs for indexing scheme)
short _trimming_end_sector
Index of the sector to end trimming at (counter-clockwise direction)
short _trimming_start_sector
Index of the sector to start trimming from (counter-clockwise direction)
static InputParameters validParams()
std::size_t euclideanMod(T1 dividend, T2 divisor)