Reference documentation for deal.II version 8.5.1
|
#include <deal.II/base/function.h>
Public Member Functions | |
ScalarFunctionFromFunctionObject (const std_cxx11::function< Number(const Point< dim > &)> &function_object) | |
virtual Number | value (const Point< dim > &p, const unsigned int component=0) const |
Public Member Functions inherited from Function< dim, Number > | |
Function (const unsigned int n_components=1, const Number initial_time=0.0) | |
virtual | ~Function ()=0 |
Function & | operator= (const Function &f) |
virtual void | vector_value (const Point< dim > &p, Vector< Number > &values) const |
virtual void | value_list (const std::vector< Point< dim > > &points, std::vector< Number > &values, const unsigned int component=0) const |
virtual void | vector_value_list (const std::vector< Point< dim > > &points, std::vector< Vector< Number > > &values) const |
virtual void | vector_values (const std::vector< Point< dim > > &points, std::vector< std::vector< Number > > &values) const |
virtual Tensor< 1, dim, Number > | gradient (const Point< dim > &p, const unsigned int component=0) const |
virtual void | vector_gradient (const Point< dim > &p, std::vector< Tensor< 1, dim, Number > > &gradients) const |
virtual void | gradient_list (const std::vector< Point< dim > > &points, std::vector< Tensor< 1, dim, Number > > &gradients, const unsigned int component=0) const |
virtual void | vector_gradients (const std::vector< Point< dim > > &points, std::vector< std::vector< Tensor< 1, dim, Number > > > &gradients) const |
virtual void | vector_gradient_list (const std::vector< Point< dim > > &points, std::vector< std::vector< Tensor< 1, dim, Number > > > &gradients) const |
virtual Number | laplacian (const Point< dim > &p, const unsigned int component=0) const |
virtual void | vector_laplacian (const Point< dim > &p, Vector< Number > &values) const |
virtual void | laplacian_list (const std::vector< Point< dim > > &points, std::vector< Number > &values, const unsigned int component=0) const |
virtual void | vector_laplacian_list (const std::vector< Point< dim > > &points, std::vector< Vector< Number > > &values) const |
virtual SymmetricTensor< 2, dim, Number > | hessian (const Point< dim > &p, const unsigned int component=0) const |
virtual void | vector_hessian (const Point< dim > &p, std::vector< SymmetricTensor< 2, dim, Number > > &values) const |
virtual void | hessian_list (const std::vector< Point< dim > > &points, std::vector< SymmetricTensor< 2, dim, Number > > &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, Number > > > &values) const |
std::size_t | memory_consumption () const |
Public Member Functions inherited from FunctionTime< Number > | |
FunctionTime (const Number initial_time=Number(0.0)) | |
virtual | ~FunctionTime () |
Number | get_time () const |
virtual void | set_time (const Number new_time) |
virtual void | advance_time (const Number delta_t) |
Public Member Functions inherited from Subscriptor | |
Subscriptor () | |
Subscriptor (const Subscriptor &) | |
Subscriptor (Subscriptor &&) | |
virtual | ~Subscriptor () |
Subscriptor & | operator= (const Subscriptor &) |
Subscriptor & | operator= (Subscriptor &&) |
void | subscribe (const char *identifier=0) const |
void | unsubscribe (const char *identifier=0) const |
unsigned int | n_subscriptions () const |
void | list_subscribers () const |
template<class Archive > | |
void | serialize (Archive &ar, const unsigned int version) |
Private Attributes | |
const std_cxx11::function< Number(const Point< dim > &)> | function_object |
Additional Inherited Members | |
Static Public Member Functions inherited from Subscriptor | |
static ::ExceptionBase & | ExcInUse (int arg1, char *arg2, std::string &arg3) |
static ::ExceptionBase & | ExcNoSubscriber (char *arg1, char *arg2) |
Public Attributes inherited from Function< dim, Number > | |
const unsigned int | n_components |
Static Public Attributes inherited from Function< dim, Number > | |
static const unsigned int | dimension = dim |
This class provides a way to convert a scalar function of the kind
into an object of type Function<dim>. Since the argument returns a scalar, the result is clearly a Function object for which function.n_components==1
. The class works by storing a pointer to the given function and every time function.value(p,component)
is called, calls foo(p)
and returns the corresponding value. It also makes sure that component
is in fact zero, as needs be for scalar functions.
The class provides an easy way to turn a simple global function into something that has the required Function<dim> interface for operations like VectorTools::interpolate_boundary_values() etc., and thereby allows for simpler experimenting without having to write all the boiler plate code of declaring a class that is derived from Function and implementing the Function::value() function. An example of this is given in the results section of step-53.
The class gains additional expressive power because the argument it takes does not have to be a pointer to an actual function. Rather, it is a function object, i.e., it can also be the result of call to std::bind (or boost::bind) or some other object that can be called with a single argument. For example, if you need a Function object that returns the norm of a point, you could write it like so:
and then pass the my_norm_object
around, or you could write it like so:
Similarly, to generate an object that computes the distance to a point q
, we could do this:
or we could write it like so:
The savings in work to write this are apparent.
Definition at line 650 of file function.h.
ScalarFunctionFromFunctionObject< dim, Number >::ScalarFunctionFromFunctionObject | ( | const std_cxx11::function< Number(const Point< dim > &)> & | function_object | ) |
Given a function object that takes a Point and returns a Number value, convert this into an object that matches the Function<dim, Number> interface.
|
virtual |
Return the value of the function at the given point. Returns the value the function given to the constructor produces for this point.
Reimplemented from Function< dim, Number >.
|
private |
The function object which we call when this class's value() or value_list() functions are called.
Definition at line 672 of file function.h.