#include <point_locator_base.h>
Public Member Functions | |
virtual | ~PointLocatorBase () |
virtual void | clear ()=0 |
virtual void | init ()=0 |
virtual const Elem * | operator() (const Point &p, const std::set< subdomain_id_type > *allowed_subdomains=nullptr) const =0 |
virtual void | operator() (const Point &p, std::set< const Elem *> &candidate_elements, const std::set< subdomain_id_type > *allowed_subdomains=nullptr) const =0 |
virtual const Node * | locate_node (const Point &p, const std::set< subdomain_id_type > *allowed_subdomains=nullptr, Real tol=TOLERANCE) const |
bool | initialized () const |
virtual void | enable_out_of_mesh_mode ()=0 |
virtual void | disable_out_of_mesh_mode ()=0 |
virtual void | set_close_to_point_tol (Real close_to_point_tol) |
virtual void | unset_close_to_point_tol () |
const MeshBase & | get_mesh () const |
Static Public Member Functions | |
static std::unique_ptr< PointLocatorBase > | build (PointLocatorType t, const MeshBase &mesh, const PointLocatorBase *master=nullptr) |
static std::string | get_info () |
static void | print_info (std::ostream &out=libMesh::out) |
static unsigned int | n_objects () |
static void | enable_print_counter_info () |
static void | disable_print_counter_info () |
Public Attributes | |
bool | _verbose |
Protected Types | |
typedef std::map< std::string, std::pair< unsigned int, unsigned int > > | Counts |
Protected Member Functions | |
PointLocatorBase (const MeshBase &mesh, const PointLocatorBase *master) | |
void | increment_constructor_count (const std::string &name) |
void | increment_destructor_count (const std::string &name) |
Protected Attributes | |
const PointLocatorBase * | _master |
const MeshBase & | _mesh |
bool | _initialized |
bool | _use_close_to_point_tol |
Real | _close_to_point_tol |
Static Protected Attributes | |
static Counts | _counts |
static Threads::atomic< unsigned int > | _n_objects |
static Threads::spin_mutex | _mutex |
static bool | _enable_print_counter = true |
This is the base class for point locators. They locate points in space: given a mesh they return the element and local coordinates for a given point in global coordinates.
Definition at line 62 of file point_locator_base.h.
|
protectedinherited |
Data structure to log the information. The log is identified by the class name.
Definition at line 117 of file reference_counter.h.
|
protected |
Constructor. Protected so that this base class cannot be explicitly instantiated. Takes a master PointLocator that helps in saving memory.
Definition at line 34 of file point_locator_base.C.
|
virtual |
|
static |
Builds an PointLocator for the mesh mesh
. Optionally takes a master PointLocator to save memory. An std::unique_ptr<PointLocatorBase>
is returned to prevent memory leak. This way the user need not remember to delete the object.
Definition at line 62 of file point_locator_base.C.
References libMesh::Trees::ELEMENTS, libMesh::Trees::LOCAL_ELEMENTS, mesh, libMesh::TREE, libMesh::TREE_ELEMENTS, and libMesh::TREE_LOCAL_ELEMENTS.
Referenced by libMesh::MeshBase::point_locator(), and libMesh::MeshBase::sub_point_locator().
|
pure virtual |
Clears the PointLocator
.
Implemented in libMesh::PointLocatorTree.
|
pure virtual |
Disables out-of-mesh mode (default). If asked to find a point that is contained in no mesh at all, the point locator will now crash.
Implemented in libMesh::PointLocatorTree.
Referenced by libMesh::MeshFunction::disable_out_of_mesh_mode().
|
staticinherited |
Definition at line 106 of file reference_counter.C.
References libMesh::ReferenceCounter::_enable_print_counter.
Referenced by libMesh::LibMeshInit::LibMeshInit().
|
pure virtual |
Enables out-of-mesh mode. In this mode, if asked to find a point that is contained in no mesh at all, the point locator will return a nullptr instead of crashing. Per default, this mode is off.
Implemented in libMesh::PointLocatorTree.
Referenced by libMesh::MeshFunction::enable_out_of_mesh_mode(), libMesh::System::point_gradient(), libMesh::System::point_hessian(), and libMesh::System::point_value().
|
staticinherited |
Methods to enable/disable the reference counter output from print_info()
Definition at line 100 of file reference_counter.C.
References libMesh::ReferenceCounter::_enable_print_counter.
|
staticinherited |
Gets a string containing the reference information.
Definition at line 47 of file reference_counter.C.
References libMesh::ReferenceCounter::_counts, and libMesh::Quality::name().
Referenced by libMesh::ReferenceCounter::print_info().
const MeshBase & libMesh::PointLocatorBase::get_mesh | ( | ) | const |
Get a const reference to this PointLocator's mesh.
Definition at line 96 of file point_locator_base.C.
References _mesh.
Referenced by libMesh::PeriodicBoundaries::neighbor().
|
inlineprotectedinherited |
Increments the construction counter. Should be called in the constructor of any derived class that will be reference counted.
Definition at line 181 of file reference_counter.h.
References libMesh::ReferenceCounter::_counts, libMesh::Quality::name(), and libMesh::Threads::spin_mtx.
Referenced by libMesh::ReferenceCountedObject< RBParametrized >::ReferenceCountedObject().
|
inlineprotectedinherited |
Increments the destruction counter. Should be called in the destructor of any derived class that will be reference counted.
Definition at line 194 of file reference_counter.h.
References libMesh::ReferenceCounter::_counts, libMesh::Quality::name(), and libMesh::Threads::spin_mtx.
Referenced by libMesh::ReferenceCountedObject< RBParametrized >::~ReferenceCountedObject().
|
pure virtual |
Initializes the point locator, so that the operator()
methods can be used. Pure virtual.
Implemented in libMesh::PointLocatorTree.
bool libMesh::PointLocatorBase::initialized | ( | ) | const |
true
when this object is properly initialized and ready for use, false
otherwise. Definition at line 55 of file point_locator_base.C.
References _initialized.
Referenced by libMesh::PointLocatorTree::init().
|
virtual |
Virtual subclasses can override for efficiency, but the base class has a default implementation that works based on element lookup.
Optionally allows the user to restrict the subdomains searched; with such a restriction, only a Node belonging to an element on one or more of those subdomains will be returned.
Will only return a Node whose distance from p
is less than tol
multiplied by the size of a semilocal element which contains p
.
Definition at line 104 of file point_locator_base.C.
References libMesh::TensorTools::norm_sq(), operator()(), and libMesh::Real.
|
inlinestaticinherited |
Prints the number of outstanding (created, but not yet destroyed) objects.
Definition at line 83 of file reference_counter.h.
References libMesh::ReferenceCounter::_n_objects.
|
pure virtual |
Locates the element in which the point with global coordinates p
is located. Pure virtual. Optionally allows the user to restrict the subdomains searched.
Implemented in libMesh::PointLocatorTree.
Referenced by locate_node().
|
pure virtual |
Locates a set of elements in proximity to the point with global coordinates p
Pure virtual. Optionally allows the user to restrict the subdomains searched.
Implemented in libMesh::PointLocatorTree.
|
staticinherited |
Prints the reference information, by default to libMesh::out
.
Definition at line 87 of file reference_counter.C.
References libMesh::ReferenceCounter::_enable_print_counter, and libMesh::ReferenceCounter::get_info().
|
virtual |
Set a tolerance to use when determining if a point is contained within the mesh.
Definition at line 82 of file point_locator_base.C.
References _close_to_point_tol, and _use_close_to_point_tol.
Referenced by libMesh::MeshFunction::set_point_locator_tolerance().
|
virtual |
Specify that we do not want to use a user-specified tolerance to determine if a point is contained within the mesh.
Definition at line 89 of file point_locator_base.C.
References _close_to_point_tol, _use_close_to_point_tol, and libMesh::TOLERANCE.
Referenced by libMesh::MeshFunction::unset_point_locator_tolerance().
|
protected |
The tolerance to use.
Definition at line 207 of file point_locator_base.h.
Referenced by libMesh::PointLocatorTree::operator()(), set_close_to_point_tol(), and unset_close_to_point_tol().
|
staticprotectedinherited |
Actually holds the data.
Definition at line 122 of file reference_counter.h.
Referenced by libMesh::ReferenceCounter::get_info(), libMesh::ReferenceCounter::increment_constructor_count(), and libMesh::ReferenceCounter::increment_destructor_count().
|
staticprotectedinherited |
Flag to control whether reference count information is printed when print_info is called.
Definition at line 141 of file reference_counter.h.
Referenced by libMesh::ReferenceCounter::disable_print_counter_info(), libMesh::ReferenceCounter::enable_print_counter_info(), and libMesh::ReferenceCounter::print_info().
|
protected |
true
when properly initialized, false
otherwise.
Definition at line 196 of file point_locator_base.h.
Referenced by libMesh::PointLocatorTree::clear(), libMesh::PointLocatorTree::init(), initialized(), and libMesh::PointLocatorTree::operator()().
|
protected |
Const pointer to our master, initialized to nullptr
if none given. When using multiple PointLocators, one can be assigned master and be in charge of something that all can have access to.
Definition at line 186 of file point_locator_base.h.
Referenced by libMesh::PointLocatorTree::clear(), and libMesh::PointLocatorTree::init().
|
protected |
constant reference to the mesh in which the point is looked for.
Definition at line 191 of file point_locator_base.h.
Referenced by get_mesh(), libMesh::PointLocatorTree::init(), libMesh::PointLocatorTree::perform_fuzzy_linear_search(), and libMesh::PointLocatorTree::perform_linear_search().
|
staticprotectedinherited |
Mutual exclusion object to enable thread-safe reference counting.
Definition at line 135 of file reference_counter.h.
|
staticprotectedinherited |
The number of objects. Print the reference count information when the number returns to 0.
Definition at line 130 of file reference_counter.h.
Referenced by libMesh::ReferenceCounter::n_objects(), libMesh::ReferenceCounter::ReferenceCounter(), and libMesh::ReferenceCounter::~ReferenceCounter().
|
protected |
true
if we will use a user-specified tolerance for locating the element.
Definition at line 202 of file point_locator_base.h.
Referenced by libMesh::PointLocatorTree::operator()(), set_close_to_point_tol(), and unset_close_to_point_tol().
bool libMesh::PointLocatorBase::_verbose |
Boolean flag to indicate whether to print out extra info.
Definition at line 178 of file point_locator_base.h.
Referenced by libMesh::PointLocatorTree::operator()().