https://mooseframework.inl.gov
DiracKernelInfo.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://mooseframework.inl.gov
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 
10 #pragma once
11 
12 #include "Moose.h"
13 #include "MooseTypes.h"
14 #include "MooseEnum.h"
15 
16 #include <set>
17 #include <map>
18 #include <memory>
19 
20 // Forward declarations
21 class MooseMesh;
22 class MooseBase;
23 
24 namespace libMesh
25 {
26 class Elem;
27 class PointLocatorBase;
28 class Point;
29 }
30 
38 {
39 public:
41  virtual ~DiracKernelInfo();
42 
43 public:
50  void addPoint(const Elem * elem, const Point & p, const Real & value = 1);
51 
55  void clearPoints();
56 
60  bool hasPoint(const Elem * elem, const Point & p);
61 
65  std::set<const Elem *> & getElements() { return _elements; }
66 
67  typedef std::map<const Elem *, std::pair<std::vector<Point>, std::vector<Real>>> MultiPointMap;
68 
73 
78  void updatePointLocator(const MooseMesh & mesh);
79 
81  CreateMooseEnumClass(PointNotFoundBehavior, ERROR, WARNING, IGNORE);
82 
92  const Elem * findPoint(const Point & p,
93  const MooseMesh & mesh,
94  const std::set<SubdomainID> & blocks,
95  const PointNotFoundBehavior point_not_found_behavior,
96  const MooseBase & consumer);
97 
98 protected:
102  bool pointsFuzzyEqual(const Point &, const Point &);
103 
105  std::set<const Elem *> _elements;
106 
109 
114  std::unique_ptr<libMesh::PointLocatorBase> _point_locator;
115 
118 };
bool hasPoint(const Elem *elem, const Point &p)
Return true if we have Point &#39;p&#39; in Element &#39;elem&#39;.
The DiracKernelInfo object is a place where all the Dirac points added by different DiracKernels are ...
void addPoint(const Elem *elem, const Point &p, const Real &value=1)
Adds a point source.
Base class for everything in MOOSE with a name and a type.
Definition: MooseBase.h:49
std::set< const Elem * > _elements
The list of elements that need distributions.
CreateMooseEnumClass(PointNotFoundBehavior, ERROR, WARNING, IGNORE)
Point-not-found behavior.
char ** blocks
MultiPointMap _points
The list of physical xyz Points that need to be evaluated in each element.
The following methods are specializations for using the libMesh::Parallel::packed_range_* routines fo...
std::unique_ptr< libMesh::PointLocatorBase > _point_locator
The DiracKernelInfo object manages a PointLocator object which is used by all DiracKernels to find Po...
MultiPointMap & getPoints()
Returns a writeable reference to the _points container.
Real value(unsigned n, unsigned alpha, unsigned beta, Real x)
MooseMesh wraps a libMesh::Mesh object and enhances its capabilities by caching additional data and s...
Definition: MooseMesh.h:93
void clearPoints()
Remove all of the current points and elements.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const Elem * findPoint(const Point &p, const MooseMesh &mesh, const std::set< SubdomainID > &blocks, const PointNotFoundBehavior point_not_found_behavior, const MooseBase &consumer)
Used by client DiracKernel classes to determine the Elem in which the Point p resides.
const Real _point_equal_distance_sq
threshold distance squared below which two points are considered identical
std::set< const Elem * > & getElements()
Returns a writeable reference to the _elements container.
void updatePointLocator(const MooseMesh &mesh)
Called during FEProblemBase::meshChanged() to update the PointLocator object used by the DiracKernels...
std::map< const Elem *, std::pair< std::vector< Point >, std::vector< Real > > > MultiPointMap
virtual ~DiracKernelInfo()
bool pointsFuzzyEqual(const Point &, const Point &)
Check if two points are equal with respect to a tolerance.