34 const bool use_taylor_hood_elements =
false)
51 auto sorted_nodes = _msh.getNodes();
52 sort(begin(sorted_nodes), end(sorted_nodes));
55 auto node_is_part_of_mesh =
56 [&mesh_nodes = sorted_nodes](MeshLib::Node* const& n)
58 auto it = lower_bound(begin(mesh_nodes), end(mesh_nodes), n);
59 if (it == end(mesh_nodes))
61 ERR(
"A node {:d} ({:g}, {:g}, {:g}) in mesh subset is not "
62 "a part of the mesh.",
63 n->getID(), (*n)[0], (*n)[1], (*n)[2]);
68 if (!std::all_of(begin(
_nodes), end(
_nodes), node_is_part_of_mesh))
70 OGS_FATAL(
"The mesh subset construction failed.");
76 std::size_t
getMeshID()
const {
return _msh.getID(); }
82 return _msh.getElements().cbegin();
87 return _msh.getElements().cend();
90 std::vector<Node*>
const&
getNodes()
const {
return _nodes; }
106 ranges::views::transform(
108 item_type](std::size_t
const node_id)
109 { return Location{mesh_id, item_type, node_id}; });
Definition of the Element class.
Definition of the Mesh class.
Definition of the Node class.
A subset of nodes on a single mesh.
std::vector< Node * > const & _nodes
MeshSubset(const Mesh &msh, std::vector< Node * > const &vec_items, const bool use_taylor_hood_elements=false)
bool useTaylorHoodElements() const
std::vector< Element * >::const_iterator elementsEnd() const
Mesh const & getMesh() const
std::size_t getMeshID() const
return this mesh ID
std::vector< Element * >::const_iterator elementsBegin() const
bool const _use_taylor_hood_elements
std::vector< Node * > const & getNodes() const
std::vector< Node * > const & getNodes() const
Get the nodes-vector for the mesh.
constexpr ranges::views::view_closure ids
For an element of a range view return its id.
auto meshLocations(Mesh const &mesh, MeshItemType const item_type)