This object is passed to MeshTools::Modification::redistribute() to redistribute the points on a uniform grid into the Gauss-Lobatto points on the actual grid.
More...
|
| | GaussLobattoRedistributionFunction (unsigned int nx, Real xmin, Real xmax, unsigned int ny=0, Real ymin=0, Real ymax=0, unsigned int nz=0, Real zmin=0, Real zmax=0) |
| | Constructor.
|
| |
| | GaussLobattoRedistributionFunction (GaussLobattoRedistributionFunction &&)=default |
| | The 5 special functions can be defaulted for this class.
|
| |
| | GaussLobattoRedistributionFunction (const GaussLobattoRedistributionFunction &)=default |
| |
| GaussLobattoRedistributionFunction & | operator= (const GaussLobattoRedistributionFunction &)=default |
| |
| GaussLobattoRedistributionFunction & | operator= (GaussLobattoRedistributionFunction &&)=default |
| |
| virtual | ~GaussLobattoRedistributionFunction ()=default |
| |
| virtual std::unique_ptr< FunctionBase< Real > > | clone () const override |
| | We must provide a way to clone ourselves to satisfy the pure virtual interface.
|
| |
| virtual void | operator() (const Point &p, const Real, DenseVector< Real > &output) override |
| | This is the actual function that MeshTools::Modification::redistribute() calls.
|
| |
| virtual Real | operator() (const Point &, const Real) override |
| | We must also override operator() which returns a Real, but this function should never be called, so it's left unimplemented.
|
| |
| virtual void | init () |
| | The actual initialization process.
|
| |
| virtual void | clear () |
| | Clears the function.
|
| |
| void | operator() (const Point &p, DenseVector< Real > &output) |
| | Evaluation function for time-independent vector-valued functions.
|
| |
| virtual Real | component (unsigned int i, const Point &p, Real time=0.) |
| |
| bool | initialized () const |
| |
| void | set_is_time_dependent (bool is_time_dependent) |
| | Function to set whether this is a time-dependent function or not.
|
| |
| bool | is_time_dependent () const |
| |
This object is passed to MeshTools::Modification::redistribute() to redistribute the points on a uniform grid into the Gauss-Lobatto points on the actual grid.
Definition at line 165 of file mesh_generation.C.
◆ GaussLobattoRedistributionFunction() [1/3]
| libMesh::MeshTools::Generation::Private::GaussLobattoRedistributionFunction::GaussLobattoRedistributionFunction |
( |
unsigned int |
nx, |
|
|
Real |
xmin, |
|
|
Real |
xmax, |
|
|
unsigned int |
ny = 0, |
|
|
Real |
ymin = 0, |
|
|
Real |
ymax = 0, |
|
|
unsigned int |
nz = 0, |
|
|
Real |
zmin = 0, |
|
|
Real |
zmax = 0 |
|
) |
| |
|
inline |
Constructor.
Definition at line 171 of file mesh_generation.C.
179 :
180 FunctionBase<Real>(nullptr)
181 {
186
191
196
197
199 for (unsigned dir=0; dir<3; ++dir)
201 {
205 }
206 }
The libMesh namespace provides an interface to certain functionality in the library.
auto index_range(const T &sizable)
Helper function that returns an IntRange<std::size_t> representing all the indices of the passed-in v...
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
References _cosines, _mins, _nelem, _widths, libMesh::index_range(), libMesh::pi, and libMesh::Real.
◆ GaussLobattoRedistributionFunction() [2/3]
The 5 special functions can be defaulted for this class.
◆ GaussLobattoRedistributionFunction() [3/3]
◆ ~GaussLobattoRedistributionFunction()
| virtual libMesh::MeshTools::Generation::Private::GaussLobattoRedistributionFunction::~GaussLobattoRedistributionFunction |
( |
| ) |
|
|
virtualdefault |
◆ clear()
◆ clone()
| virtual std::unique_ptr< FunctionBase< Real > > libMesh::MeshTools::Generation::Private::GaussLobattoRedistributionFunction::clone |
( |
| ) |
const |
|
inlineoverridevirtual |
We must provide a way to clone ourselves to satisfy the pure virtual interface.
We use the autogenerated copy constructor.
Implements libMesh::FunctionBase< Real >.
Definition at line 221 of file mesh_generation.C.
222 {
223 return std::make_unique<GaussLobattoRedistributionFunction>(*this);
224 }
◆ component()
- Returns
- The vector component
i at coordinate p and time time.
- Note
- Subclasses aren't required to override this, since the default implementation is based on the full vector evaluation, which is often correct.
-
Subclasses are recommended to override this, since the default implementation is based on a vector evaluation, which is usually unnecessarily inefficient.
-
The default implementation calls operator() with a DenseVector of size
i+1 which will result in unexpected behaviour if operator() makes any access beyond that limit.
Definition at line 145 of file function_base.h.
235{
236 DenseVector<Output> outvec(i+1);
237 (*this)(p, time, outvec);
238 return outvec(i);
239}
◆ init()
◆ initialized()
- Returns
true when this object is properly initialized and ready for use, false otherwise.
Definition at line 154 of file function_base.h.
211{
212 return (this->_initialized);
213}
◆ is_time_dependent()
- Returns
true when the function this object represents is actually time-dependent, false otherwise.
Definition at line 168 of file function_base.h.
225{
226 return (this->_is_time_dependent);
227}
◆ operator()() [1/3]
| virtual Real libMesh::MeshTools::Generation::Private::GaussLobattoRedistributionFunction::operator() |
( |
const Point & |
, |
|
|
const Real |
|
|
) |
| |
|
inlineoverridevirtual |
We must also override operator() which returns a Real, but this function should never be called, so it's left unimplemented.
Implements libMesh::FunctionBase< Real >.
Definition at line 294 of file mesh_generation.C.
296 {
297 libmesh_not_implemented();
298 }
◆ operator()() [2/3]
| virtual void libMesh::MeshTools::Generation::Private::GaussLobattoRedistributionFunction::operator() |
( |
const Point & |
p, |
|
|
const Real |
, |
|
|
DenseVector< Real > & |
output |
|
) |
| |
|
inlineoverridevirtual |
◆ operator()() [3/3]
Evaluation function for time-independent vector-valued functions.
Sets output values in the passed-in output DenseVector.
Definition at line 116 of file function_base.h.
247{
248
250}
virtual Real operator()(const Point &p, const Real time=0.)=0
◆ operator=() [1/2]
◆ operator=() [2/2]
◆ set_is_time_dependent()
Function to set whether this is a time-dependent function or not.
This is intended to be only used by subclasses who cannot natively determine time-dependence. In such a case, this function should be used immediately following construction.
Definition at line 162 of file function_base.h.
218{
220}
bool is_time_dependent() const
bool _is_time_dependent
Cache whether or not this function is actually time-dependent.
◆ _cosines
| std::vector<std::vector<Real> > libMesh::MeshTools::Generation::Private::GaussLobattoRedistributionFunction::_cosines |
|
protected |
◆ _initialized
When init() was called so that everything is ready for calls to operator() (...), then this bool is true.
Definition at line 184 of file function_base.h.
◆ _is_time_dependent
Cache whether or not this function is actually time-dependent.
Definition at line 189 of file function_base.h.
◆ _master
Const pointer to our master, initialized to nullptr.
There may be cases where multiple functions are required, but to save memory, one master handles some centralized data.
Definition at line 178 of file function_base.h.
◆ _mins
| std::vector<Real> libMesh::MeshTools::Generation::Private::GaussLobattoRedistributionFunction::_mins |
|
protected |
◆ _nelem
| std::vector<unsigned int> libMesh::MeshTools::Generation::Private::GaussLobattoRedistributionFunction::_nelem |
|
protected |
◆ _widths
| std::vector<Real> libMesh::MeshTools::Generation::Private::GaussLobattoRedistributionFunction::_widths |
|
protected |
The documentation for this class was generated from the following file: