www.mooseframework.org
SubdomainBoundingBoxGenerator.C
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
11 #include "Conversion.h"
12 #include "CastUniquePointer.h"
13 #include "MooseUtils.h"
14 #include "MooseMeshUtils.h"
15 
16 #include "libmesh/elem.h"
17 
19 
22 {
23  MooseEnum location("INSIDE OUTSIDE", "INSIDE");
24 
26 
27  params.addRequiredParam<MeshGeneratorName>("input", "The mesh we want to modify");
28  params.addClassDescription("Changes the subdomain ID of elements either (XOR) inside or outside "
29  "the specified box to the specified ID.");
31  "bottom_left", "The bottom left point (in x,y,z with spaces in-between).");
33  "top_right", "The bottom left point (in x,y,z with spaces in-between).");
35  "block_id", "Subdomain id to set for inside/outside the bounding box");
36  params.addParam<SubdomainName>(
37  "block_name", "Subdomain name to set for inside/outside the bounding box (optional)");
38  params.addParam<MooseEnum>(
39  "location", location, "Control of where the subdomain id is to be set");
40  params.addParam<std::vector<SubdomainName>>(
41  "restricted_subdomains",
42  "Only reset subdomain ID for given subdomains within the bounding box");
43 
44  params.addParam<std::string>("integer_name",
45  "Element integer to be assigned (default to subdomain ID)");
46  return params;
47 }
48 
50  : MeshGenerator(parameters),
51  _input(getMesh("input")),
52  _location(parameters.get<MooseEnum>("location")),
53  _block_id(parameters.get<subdomain_id_type>("block_id")),
54  _has_restriction(isParamValid("restricted_subdomains")),
55  _bounding_box(MooseUtils::buildBoundingBox(parameters.get<RealVectorValue>("bottom_left"),
56  parameters.get<RealVectorValue>("top_right")))
57 {
58 }
59 
60 std::unique_ptr<MeshBase>
62 {
63  std::unique_ptr<MeshBase> mesh = std::move(_input);
64 
65  std::set<SubdomainID> restricted_ids;
66  if (_has_restriction)
67  {
68  auto names = getParam<std::vector<SubdomainName>>("restricted_subdomains");
69  for (auto & name : names)
70  {
71  // check that the subdomain exists in the mesh
73  paramError("restricted_subdomains", "The block '", name, "' was not found in the mesh");
74 
75  restricted_ids.insert(MooseMeshUtils::getSubdomainID(name, *mesh));
76  }
77  }
78 
79  if (isParamValid("integer_name"))
80  {
81  std::string integer_name = getParam<std::string>("integer_name");
82 
83  if (!mesh->has_elem_integer(integer_name))
84  mooseError("Mesh does not have an element integer names as ", integer_name);
85 
86  unsigned int id = mesh->get_elem_integer_index(integer_name);
87 
88  // Loop over the elements
89  for (const auto & elem : mesh->active_element_ptr_range())
90  {
91  if (_has_restriction && restricted_ids.count(elem->subdomain_id()) == 0)
92  continue;
93 
94  bool contains = _bounding_box.contains_point(elem->vertex_average());
95  if ((contains && _location == "INSIDE") || (!contains && _location == "OUTSIDE"))
96  elem->set_extra_integer(id, _block_id);
97  }
98  }
99  else
100  {
101  // Loop over the elements
102  for (const auto & elem : mesh->element_ptr_range())
103  {
104  if (_has_restriction && restricted_ids.count(elem->subdomain_id()) == 0)
105  continue;
106 
107  bool contains = _bounding_box.contains_point(elem->vertex_average());
108  if ((contains && _location == "INSIDE") || (!contains && _location == "OUTSIDE"))
109  elem->subdomain_id() = _block_id;
110  }
111 
112  // Assign block name, if provided
113  if (isParamValid("block_name"))
114  mesh->subdomain_name(_block_id) = getParam<SubdomainName>("block_name");
115  }
116 
117  mesh->set_isnt_prepared();
118  return dynamic_pointer_cast<MeshBase>(mesh);
119 }
MeshGenerator for defining a Subdomain inside or outside of a bounding box.
T * get(const std::unique_ptr< T > &u)
The MooseUtils::get() specializations are used to support making forwards-compatible code changes fro...
Definition: MooseUtils.h:1147
MeshBase & mesh
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
SubdomainBoundingBoxGenerator(const InputParameters &parameters)
std::unique_ptr< MeshBase > generate() override
Generate / modify the mesh.
std::unique_ptr< T_DEST, T_DELETER > dynamic_pointer_cast(std::unique_ptr< T_SRC, T_DELETER > &src)
These are reworked from https://stackoverflow.com/a/11003103.
std::unique_ptr< MeshBase > & _input
virtual const std::string & name() const
Get the name of the class.
Definition: MooseBase.h:57
void addRequiredParam(const std::string &name, const std::string &doc_string)
This method adds a parameter and documentation string to the InputParameters object that will be extr...
SubdomainID getSubdomainID(const SubdomainName &subdomain_name, const MeshBase &mesh)
Gets the subdomain ID associated with the given SubdomainName.
bool isParamValid(const std::string &name) const
Test if the supplied parameter is valid.
subdomain_id_type _block_id
Block ID to assign to the region.
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type It sho...
Definition: MooseEnum.h:31
bool hasSubdomainName(MeshBase &input_mesh, const SubdomainName &name)
Whether a particular subdomain name exists in the mesh.
void paramError(const std::string &param, Args... args) const
Emits an error prefixed with the file and line number of the given param (from the input file) along ...
static InputParameters validParams()
Definition: MeshGenerator.C:23
const bool _has_restriction
Whether or not we apply the bounding box only for certain subdomains.
registerMooseObject("MooseApp", SubdomainBoundingBoxGenerator)
MooseEnum _location
ID location (inside of outside of box)
BoundingBox buildBoundingBox(const Point &p1, const Point &p2)
Construct a valid bounding box from 2 arbitrary points.
Definition: MooseUtils.C:1226
void mooseError(Args &&... args) const
Emits an error prefixed with object name and type.
void addClassDescription(const std::string &doc_string)
This method adds a description of the class that will be displayed in the input file syntax dump...
void addParam(const std::string &name, const S &value, const std::string &doc_string)
These methods add an option parameter and a documentation string to the InputParameters object...
BoundingBox _bounding_box
Bounding box for testing element centroids against.
MeshGenerators are objects that can modify or add to an existing mesh.
Definition: MeshGenerator.h:32