Reference documentation for deal.II version 9.3.3
\(\newcommand{\dealvcentcolon}{\mathrel{\mathop{:}}}\) \(\newcommand{\dealcoloneq}{\dealvcentcolon\mathrel{\mkern-1.2mu}=}\) \(\newcommand{\jump}[1]{\left[\!\left[ #1 \right]\!\right]}\) \(\newcommand{\average}[1]{\left\{\!\left\{ #1 \right\}\!\right\}}\)
Public Types | Public Member Functions | Public Attributes | Static Public Attributes | Private Attributes | List of all members
Functions::PointRestriction< dim > Class Template Reference

#include <deal.II/base/function_restriction.h>

Inheritance diagram for Functions::PointRestriction< dim >:
[legend]

Public Types

using time_type = typename FunctionTime< typename numbers::NumberTraits< double >::real_type >::time_type
 

Public Member Functions

 PointRestriction (const Function< dim+1 > &function, const unsigned int open_direction, const Point< dim > &point)
 
double value (const Point< 1 > &point, const unsigned int component) const override
 
Tensor< 1, 1 > gradient (const Point< 1 > &point, const unsigned int component) const override
 
SymmetricTensor< 2, 1 > hessian (const Point< 1 > &point, const unsigned int component) const override
 
virtual double value (const Point< dim > &p, const unsigned int component=0) const
 
virtual void vector_value (const Point< dim > &p, Vector< double > &values) const
 
virtual void value_list (const std::vector< Point< dim > > &points, std::vector< double > &values, const unsigned int component=0) const
 
virtual void vector_value_list (const std::vector< Point< dim > > &points, std::vector< Vector< double > > &values) const
 
virtual void vector_values (const std::vector< Point< dim > > &points, std::vector< std::vector< double > > &values) const
 
virtual Tensor< 1, dim, double > gradient (const Point< dim > &p, const unsigned int component=0) const
 
virtual void vector_gradient (const Point< dim > &p, std::vector< Tensor< 1, dim, double > > &gradients) const
 
virtual void gradient_list (const std::vector< Point< dim > > &points, std::vector< Tensor< 1, dim, double > > &gradients, const unsigned int component=0) const
 
virtual void vector_gradients (const std::vector< Point< dim > > &points, std::vector< std::vector< Tensor< 1, dim, double > > > &gradients) const
 
virtual void vector_gradient_list (const std::vector< Point< dim > > &points, std::vector< std::vector< Tensor< 1, dim, double > > > &gradients) const
 
virtual double laplacian (const Point< dim > &p, const unsigned int component=0) const
 
virtual void vector_laplacian (const Point< dim > &p, Vector< double > &values) const
 
virtual void laplacian_list (const std::vector< Point< dim > > &points, std::vector< double > &values, const unsigned int component=0) const
 
virtual void vector_laplacian_list (const std::vector< Point< dim > > &points, std::vector< Vector< double > > &values) const
 
virtual SymmetricTensor< 2, dim, double > hessian (const Point< dim > &p, const unsigned int component=0) const
 
virtual void vector_hessian (const Point< dim > &p, std::vector< SymmetricTensor< 2, dim, double > > &values) const
 
virtual void hessian_list (const std::vector< Point< dim > > &points, std::vector< SymmetricTensor< 2, dim, double > > &values, const unsigned int component=0) const
 
virtual void vector_hessian_list (const std::vector< Point< dim > > &points, std::vector< std::vector< SymmetricTensor< 2, dim, double > > > &values) const
 
virtual std::size_t memory_consumption () const
 
numbers::NumberTraits< double >::real_type get_time () const
 
virtual void set_time (const numbers::NumberTraits< double >::real_type new_time)
 
virtual void advance_time (const numbers::NumberTraits< double >::real_type delta_t)
 

Public Attributes

const unsigned int n_components
 

Static Public Attributes

static const unsigned int dimension
 

Private Attributes

const SmartPointer< const Function< dim+1 > > function
 
const unsigned int open_direction
 
const Point< dim > point
 
numbers::NumberTraits< double >::real_type time
 

Subscriptor functionality

Classes derived from Subscriptor provide a facility to subscribe to this object. This is mostly used by the SmartPointer class.

std::atomic< unsigned intcounter
 
std::map< std::string, unsigned intcounter_map
 
std::vector< std::atomic< bool > * > validity_pointers
 
const std::type_info * object_info
 
void subscribe (std::atomic< bool > *const validity, const std::string &identifier="") const
 
void unsubscribe (std::atomic< bool > *const validity, const std::string &identifier="") const
 
unsigned int n_subscriptions () const
 
template<typename StreamType >
void list_subscribers (StreamType &stream) const
 
void list_subscribers () const
 
template<class Archive >
void serialize (Archive &ar, const unsigned int version)
 
using map_value_type = decltype(counter_map)::value_type
 
using map_iterator = decltype(counter_map)::iterator
 
static std::mutex mutex
 
static ::ExceptionBaseExcInUse (int arg1, std::string arg2, std::string arg3)
 
static ::ExceptionBaseExcNoSubscriber (std::string arg1, std::string arg2)
 
void check_no_subscribers () const noexcept
 

Detailed Description

template<int dim>
class Functions::PointRestriction< dim >

This class creates a 1-dimensional function from a dim + 1 dimensional function by restricting dim of the coordinate values to a given point. Mathematically this corresponds to taking a function, \(f = f(x, y, z)\), and a point \((Y, Z)\), and defining a new function \(g = g(x) = f(x, Y, Z)\). Using this class, this translates to

Point<2> point(y, z);
unsigned int open_direction = 0;
const SmartPointer< const Function< dim+1 > > function

The coordinates of the point will be expanded in the higher-dimensional functions coordinates starting from the open-direction (and wrapping around). In particular, if we restrict to a point \((Z, X)\) and choose to keep the y-direction open, the restriction that is created is the function \(g(y) = f(X, y, Z)\). This is consistent with the convention in BoundingBox::cross_section.

Definition at line 110 of file function_restriction.h.

Member Typedef Documentation

◆ time_type

using Function< dim, double >::time_type = typename FunctionTime< typename numbers::NumberTraits<double >::real_type>::time_type
inherited

The scalar-valued real type used for representing time.

Definition at line 169 of file function.h.

Constructor & Destructor Documentation

◆ PointRestriction()

template<int dim>
Functions::PointRestriction< dim >::PointRestriction ( const Function< dim+1 > &  function,
const unsigned int  open_direction,
const Point< dim > &  point 
)

Constructor, takes the point that the incoming function should be restricted to and which (dim + 1)-dimensional coordinate direction should be kept "open".

A pointer to the incoming function is stored internally, so the function must have a longer lifetime than the created restriction.

Definition at line 140 of file function_restriction.cc.

Member Function Documentation

◆ value() [1/2]

template<int dim>
double Functions::PointRestriction< dim >::value ( const Point< 1 > &  point,
const unsigned int  component 
) const
override

Definition at line 154 of file function_restriction.cc.

◆ gradient() [1/2]

template<int dim>
Tensor< 1, 1 > Functions::PointRestriction< dim >::gradient ( const Point< 1 > &  point,
const unsigned int  component 
) const
override

Definition at line 166 of file function_restriction.cc.

◆ hessian() [1/2]

template<int dim>
SymmetricTensor< 2, 1 > Functions::PointRestriction< dim >::hessian ( const Point< 1 > &  point,
const unsigned int  component 
) const
override

Definition at line 185 of file function_restriction.cc.

◆ value() [2/2]

virtual double Function< dim, double >::value ( const Point< dim > &  p,
const unsigned int  component = 0 
) const
virtualinherited

Return the value of the function at the given point. Unless there is only one component (i.e. the function is scalar), you should state the component you want to have evaluated; it defaults to zero, i.e. the first component.

◆ vector_value()

virtual void Function< dim, double >::vector_value ( const Point< dim > &  p,
Vector< double > &  values 
) const
virtualinherited

Return all components of a vector-valued function at a given point.

values shall have the right size beforehand, i.e. n_components.

The default implementation will call value() for each component.

◆ value_list()

virtual void Function< dim, double >::value_list ( const std::vector< Point< dim > > &  points,
std::vector< double > &  values,
const unsigned int  component = 0 
) const
virtualinherited

Set values to the point values of the specified component of the function at the points. It is assumed that values already has the right size, i.e. the same size as the points array.

By default, this function repeatedly calls value() for each point separately, to fill the output array.

◆ vector_value_list()

virtual void Function< dim, double >::vector_value_list ( const std::vector< Point< dim > > &  points,
std::vector< Vector< double > > &  values 
) const
virtualinherited

Set values to the point values of the function at the points. It is assumed that values already has the right size, i.e. the same size as the points array, and that all elements be vectors with the same number of components as this function has.

By default, this function repeatedly calls vector_value() for each point separately, to fill the output array.

◆ vector_values()

virtual void Function< dim, double >::vector_values ( const std::vector< Point< dim > > &  points,
std::vector< std::vector< double > > &  values 
) const
virtualinherited

For each component of the function, fill a vector of values, one for each point.

The default implementation of this function in Function calls value_list() for each component. In order to improve performance, this can be reimplemented in derived classes to speed up performance.

◆ gradient() [2/2]

virtual Tensor< 1, dim, double > Function< dim, double >::gradient ( const Point< dim > &  p,
const unsigned int  component = 0 
) const
virtualinherited

Return the gradient of the specified component of the function at the given point.

◆ vector_gradient()

virtual void Function< dim, double >::vector_gradient ( const Point< dim > &  p,
std::vector< Tensor< 1, dim, double > > &  gradients 
) const
virtualinherited

Return the gradient of all components of the function at the given point.

◆ gradient_list()

virtual void Function< dim, double >::gradient_list ( const std::vector< Point< dim > > &  points,
std::vector< Tensor< 1, dim, double > > &  gradients,
const unsigned int  component = 0 
) const
virtualinherited

Set gradients to the gradients of the specified component of the function at the points. It is assumed that gradients already has the right size, i.e. the same size as the points array.

◆ vector_gradients()

virtual void Function< dim, double >::vector_gradients ( const std::vector< Point< dim > > &  points,
std::vector< std::vector< Tensor< 1, dim, double > > > &  gradients 
) const
virtualinherited

For each component of the function, fill a vector of gradient values, one for each point.

The default implementation of this function in Function calls value_list() for each component. In order to improve performance, this can be reimplemented in derived classes to speed up performance.

◆ vector_gradient_list()

virtual void Function< dim, double >::vector_gradient_list ( const std::vector< Point< dim > > &  points,
std::vector< std::vector< Tensor< 1, dim, double > > > &  gradients 
) const
virtualinherited

Set gradients to the gradients of the function at the points, for all components. It is assumed that gradients already has the right size, i.e. the same size as the points array.

The outer loop over gradients is over the points in the list, the inner loop over the different components of the function.

◆ laplacian()

virtual double Function< dim, double >::laplacian ( const Point< dim > &  p,
const unsigned int  component = 0 
) const
virtualinherited

Compute the Laplacian of a given component at point p.

◆ vector_laplacian()

virtual void Function< dim, double >::vector_laplacian ( const Point< dim > &  p,
Vector< double > &  values 
) const
virtualinherited

Compute the Laplacian of all components at point p and store them in values.

◆ laplacian_list()

virtual void Function< dim, double >::laplacian_list ( const std::vector< Point< dim > > &  points,
std::vector< double > &  values,
const unsigned int  component = 0 
) const
virtualinherited

Compute the Laplacian of one component at a set of points.

◆ vector_laplacian_list()

virtual void Function< dim, double >::vector_laplacian_list ( const std::vector< Point< dim > > &  points,
std::vector< Vector< double > > &  values 
) const
virtualinherited

Compute the Laplacians of all components at a set of points.

◆ hessian() [2/2]

virtual SymmetricTensor< 2, dim, double > Function< dim, double >::hessian ( const Point< dim > &  p,
const unsigned int  component = 0 
) const
virtualinherited

Compute the Hessian of a given component at point p, that is the gradient of the gradient of the function.

◆ vector_hessian()

virtual void Function< dim, double >::vector_hessian ( const Point< dim > &  p,
std::vector< SymmetricTensor< 2, dim, double > > &  values 
) const
virtualinherited

Compute the Hessian of all components at point p and store them in values.

◆ hessian_list()

virtual void Function< dim, double >::hessian_list ( const std::vector< Point< dim > > &  points,
std::vector< SymmetricTensor< 2, dim, double > > &  values,
const unsigned int  component = 0 
) const
virtualinherited

Compute the Hessian of one component at a set of points.

◆ vector_hessian_list()

virtual void Function< dim, double >::vector_hessian_list ( const std::vector< Point< dim > > &  points,
std::vector< std::vector< SymmetricTensor< 2, dim, double > > > &  values 
) const
virtualinherited

Compute the Hessians of all components at a set of points.

◆ memory_consumption()

virtual std::size_t Function< dim, double >::memory_consumption ( ) const
virtualinherited

Return an estimate for the memory consumption, in bytes, of this object.

This function is virtual and can be overloaded by derived classes.

◆ get_time()

numbers::NumberTraits< double >::real_type FunctionTime< numbers::NumberTraits< double >::real_type >::get_time ( ) const
inherited

Return the value of the time variable.

◆ set_time()

virtual void FunctionTime< numbers::NumberTraits< double >::real_type >::set_time ( const numbers::NumberTraits< double >::real_type  new_time)
virtualinherited

Set the time to new_time, overwriting the old value.

◆ advance_time()

virtual void FunctionTime< numbers::NumberTraits< double >::real_type >::advance_time ( const numbers::NumberTraits< double >::real_type  delta_t)
virtualinherited

Advance the time by the given time step delta_t.

Member Data Documentation

◆ function

template<int dim>
const SmartPointer<const Function<dim + 1> > Functions::PointRestriction< dim >::function
private

Definition at line 137 of file function_restriction.h.

◆ open_direction

template<int dim>
const unsigned int Functions::PointRestriction< dim >::open_direction
private

Definition at line 140 of file function_restriction.h.

◆ point

template<int dim>
const Point<dim> Functions::PointRestriction< dim >::point
private

Definition at line 143 of file function_restriction.h.

◆ dimension

const unsigned int Function< dim, double >::dimension
staticinherited

Export the value of the template parameter as a static member constant. Sometimes useful for some expression template programming.

Definition at line 159 of file function.h.

◆ n_components

const unsigned int Function< dim, double >::n_components
inherited

Number of vector components.

Definition at line 164 of file function.h.

◆ time

numbers::NumberTraits< double >::real_type FunctionTime< numbers::NumberTraits< double >::real_type >::time
privateinherited

Store the present time.

Definition at line 113 of file function_time.h.


The documentation for this class was generated from the following files: