16 #include "libmesh/fparser_ad.hh" 17 #include "libmesh/distributed_mesh.h" 18 #include "libmesh/elem.h" 19 #include "libmesh/fe_base.h" 32 "Function expression encoding a combinatorial geometry");
33 params.
addRequiredParam<BoundaryName>(
"new_sideset_name",
"The name of the new sideset");
35 params.
addParam<std::vector<std::string>>(
36 "constant_names", {},
"Vector of constants used in the parsed function");
37 params.
addParam<std::vector<std::string>>(
38 "constant_expressions",
40 "Vector of values for the constants in constant_names (can be an FParser expression)");
46 "A MeshGenerator that adds element sides to a sideset if the centroid of the side satisfies " 47 "the `combinatorial_geometry` expression.");
55 _function(parameters.
get<
std::string>(
"combinatorial_geometry"))
60 _func_F = std::make_shared<SymFunction>();
64 getParam<std::vector<std::string>>(
"constant_names"),
65 getParam<std::vector<std::string>>(
"constant_expressions"),
71 std::unique_ptr<MeshBase>
74 std::unique_ptr<MeshBase>
mesh = std::move(
_input);
75 if (!
mesh->is_replicated())
77 "ParsedGenerateSideset is not implemented for distributed meshes. Make sure the " 78 "parsed sideset does NOT cross any mesh distribution boundaries, using the ProcessorAux");
83 BoundaryInfo & boundary_info =
mesh->get_boundary_info();
86 std::vector<boundary_id_type> boundary_ids =
88 mooseAssert(boundary_ids.size() == 1,
"Length of boundary_ids should be one");
90 for (
const auto & elem :
mesh->active_element_ptr_range())
97 for (
const auto side :
make_range(elem->n_sides()))
101 const Point & face_normal =
_fe_face->get_normals()[0];
107 std::unique_ptr<Elem> curr_side = elem->side_ptr(side);
114 boundary_info.remove_side(elem, side);
115 boundary_info.add_side(elem, side, boundary_ids[0]);
122 mesh->unset_is_prepared();
bool elementSubdomainIdInList(const Elem *const elem, const std::vector< subdomain_id_type > &subdomain_id_list)
Determines whether the given element's subdomain id is in the given subdomain_id_list.
GenericReal< is_ad > evaluate(SymFunctionPtr &, const std::string &object_name="")
Evaluate FParser object and check EvalError.
SymFunctionPtr _func_F
function parser object describing the combinatorial geometry
bool elemSideSatisfiesRequirements(const Elem *const elem, const unsigned int side, const MeshBase &mesh, const Point &normal, const Point &face_normal)
Determines whether the given element's side satisfies the following parameters: include_only_external...
std::unique_ptr< MeshBase > generate() override
Generate / modify the mesh.
std::unique_ptr< MeshBase > & _input
the mesh to add the sidesets to
ParsedGenerateSideset(const InputParameters ¶meters)
const T & getParam(const std::string &name) const
Retrieve a parameter for the object.
std::string _function
function expression
Point _normal
if specified, then faces are only added if their normal is close to this
static InputParameters validParams()
const bool _replace
Whether or not to remove the old sidesets (all of them, if any) when adding sidesets.
const Parallel::Communicator & comm() const
std::vector< BoundaryName > _boundary_names
The list of new boundary names.
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.
MeshGenerator for defining a sideset by a parsed expression and optionally by considering additional ...
void mooseWarning(Args &&... args) const
std::vector< subdomain_id_type > _included_subdomain_ids
A list of included subdomain ids that the side has to be part of, extracted from the included_subdoma...
std::vector< BoundaryID > getBoundaryIDs(const libMesh::MeshBase &mesh, const std::vector< BoundaryName > &boundary_name, bool generate_unknown, const std::set< BoundaryID > &mesh_boundary_ids)
Gets the boundary IDs with their names.
void parsedFunctionSetup(SymFunctionPtr &function, const std::string &expression, const std::string &variables, const std::vector< std::string > &constant_names, const std::vector< std::string > &constant_expressions, const libMesh::Parallel::Communicator &comm) const
Performs setup steps on a SymFunction.
void finalize()
This method finalizes the object, setting names back in the boundary_info object and releasing memory...
static InputParameters validParams()
const bool _check_subdomains
whether to check subdomain ids of the element in the (element, side, boundary id) tuple when adding s...
std::vector< GenericReal< is_ad > > _func_params
Array to stage the parameters passed to the functions when calling Eval.
IntRange< T > make_range(T beg, T end)
static InputParameters validParams()
registerMooseObject("MooseApp", ParsedGenerateSideset)
std::unique_ptr< libMesh::FEBase > _fe_face
void setup(MeshBase &mesh)
This method is used to construct the FE object so we can compute normals of faces.
const Elem & get(const ElemType type_in)