libMesh
elem_side_builder.C
Go to the documentation of this file.
1 // The libMesh Finite Element Library.
2 // Copyright (C) 2002-2025 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner
3 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License, or (at your option) any later version.
8 
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // Lesser General Public License for more details.
13 
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 
18 
19 
20 #include "libmesh/elem_side_builder.h"
21 
22 namespace libMesh
23 {
24 
25 Elem &
26 ElemSideBuilder::operator()(Elem & elem, const unsigned int s)
27 {
28  libmesh_assert_less(s, elem.n_sides());
29  const std::size_t type_index = static_cast<std::size_t>(elem.side_type(s));
30  if (type_index >= _cached_elems.size())
31  _cached_elems.resize(type_index + 1);
32  std::unique_ptr<Elem> & side_elem = _cached_elems[type_index];
33  elem.build_side_ptr(side_elem, s);
34  return *side_elem;
35 }
36 
37 const Elem &
38 ElemSideBuilder::operator()(const Elem & elem, const unsigned int s)
39 {
40  return (*this)(const_cast<Elem &>(elem), s);
41 }
42 
43 } // namespace libMesh
virtual ElemType side_type(const unsigned int s) const =0
virtual std::unique_ptr< Elem > build_side_ptr(const unsigned int i)=0
Elem & operator()(Elem &elem, const unsigned int s)
This is the base class from which all geometric element types are derived.
Definition: elem.h:94
std::vector< std::unique_ptr< Elem > > _cached_elems
Element cache for building sides; indexed by ElemType.
The libMesh namespace provides an interface to certain functionality in the library.
virtual unsigned int n_sides() const =0