Reference documentation for deal.II version 9.0.0
|
#include <deal.II/base/parsed_function.h>
Public Member Functions | |
ParsedFunction (const unsigned int n_components=1, const double h=1e-8) | |
void | parse_parameters (ParameterHandler &prm) |
virtual void | vector_value (const Point< dim > &p, Vector< double > &values) const |
virtual double | value (const Point< dim > &p, const unsigned int component=0) const |
virtual void | set_time (const double newtime) |
Public Member Functions inherited from AutoDerivativeFunction< dim > | |
AutoDerivativeFunction (const double h, const unsigned int n_components=1, const double initial_time=0.0) | |
virtual | ~AutoDerivativeFunction ()=default |
void | set_formula (const DifferenceFormula formula=Euler) |
void | set_h (const double h) |
virtual Tensor< 1, dim > | gradient (const Point< dim > &p, const unsigned int component=0) const |
virtual void | vector_gradient (const Point< dim > &p, std::vector< Tensor< 1, dim > > &gradients) const |
virtual void | gradient_list (const std::vector< Point< dim > > &points, std::vector< Tensor< 1, dim > > &gradients, const unsigned int component=0) const |
virtual void | vector_gradient_list (const std::vector< Point< dim > > &points, std::vector< std::vector< Tensor< 1, dim > > > &gradients) const |
Public Member Functions inherited from Function< dim > | |
Function (const unsigned int n_components=1, const double initial_time=0.0) | |
virtual | ~Function ()=0 |
Function & | operator= (const Function &f) |
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 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 |
std::size_t | memory_consumption () const |
Public Member Functions inherited from FunctionTime< Number > | |
FunctionTime (const Number initial_time=Number(0.0)) | |
virtual | ~FunctionTime ()=default |
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 &&) noexcept | |
virtual | ~Subscriptor () |
Subscriptor & | operator= (const Subscriptor &) |
Subscriptor & | operator= (Subscriptor &&) noexcept |
void | subscribe (const char *identifier=nullptr) const |
void | unsubscribe (const char *identifier=nullptr) const |
unsigned int | n_subscriptions () const |
void | list_subscribers () const |
template<class Archive > | |
void | serialize (Archive &ar, const unsigned int version) |
Static Public Member Functions | |
static void | declare_parameters (ParameterHandler &prm, const unsigned int n_components=1) |
Static Public Member Functions inherited from AutoDerivativeFunction< dim > | |
static DifferenceFormula | get_formula_of_order (const unsigned int ord) |
Static Public Member Functions inherited from Subscriptor | |
static ::ExceptionBase & | ExcInUse (int arg1, std::string arg2, std::string arg3) |
static ::ExceptionBase & | ExcNoSubscriber (std::string arg1, std::string arg2) |
Private Attributes | |
FunctionParser< dim > | function_object |
Additional Inherited Members | |
Public Types inherited from AutoDerivativeFunction< dim > | |
enum | DifferenceFormula { Euler, UpwindEuler, FourthOrder } |
Public Attributes inherited from Function< dim > | |
const unsigned int | n_components |
Static Public Attributes inherited from Function< dim > | |
static const unsigned int | dimension |
Friendly interface to the FunctionParser class. This class is meant as a wrapper for the FunctionParser class. It is used in the step-34 tutorial program.
It provides two methods to declare and parse a ParameterHandler object and creates the Function object declared in the parameter file. This class is derived from the AutoDerivativeFunction class, so you don't need to specify derivatives. An example of usage of this class is as follows:
And here is an example of how the input parameter could look like (see the documentation of the FunctionParser class for a detailed description of the syntax of the function definition):
Definition at line 79 of file parsed_function.h.
Functions::ParsedFunction< dim >::ParsedFunction | ( | const unsigned int | n_components = 1 , |
const double | h = 1e-8 |
||
) |
Construct a vector function. The vector function which is generated has n_components
components (defaults to 1). The parameter h
is used to initialize the AutoDerivativeFunction class from which this class is derived.
Definition at line 26 of file parsed_function.cc.
|
static |
Declare parameters needed by this class. The additional parameter n_components
is used to generate the right code according to the number of components of the function that will parse this ParameterHandler. If the number of components which is parsed does not match the number of components of this object, an assertion is thrown and the program is aborted. The default behavior for this class is to declare the following entries:
Definition at line 36 of file parsed_function.cc.
void Functions::ParsedFunction< dim >::parse_parameters | ( | ParameterHandler & | prm | ) |
Parse parameters needed by this class. If the number of components which is parsed does not match the number of components of this object, an assertion is thrown and the program is aborted. In order for the class to function properly, we follow the same conventions declared in the FunctionParser class (look there for a detailed description of the syntax for function declarations).
The three variables that can be parsed from a parameter file are the following:
Function constants is a collection of pairs in the form name=value, separated by commas, for example:
These constants can be used in the declaration of the function expression, which follows the convention of the FunctionParser class. In order to specify vector functions, semicolons have to be used to separate the different components, e.g.:
The variable names entry can be used to customize the name of the variables used in the Function. It defaults to
for one dimensional problems,
for two dimensional problems and
for three dimensional problems.
The time variable can be set according to specifications in the FunctionTime base class.
Definition at line 105 of file parsed_function.cc.
|
virtual |
Return all components of a vector-valued function at the given point p
.
Reimplemented from Function< dim >.
Definition at line 155 of file parsed_function.cc.
|
virtual |
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.
Reimplemented from Function< dim >.
Definition at line 164 of file parsed_function.cc.
|
virtual |
Set the time to a specific value for time-dependent functions.
We need to overwrite this to set the time also in the accessor FunctionParser<dim>.
Definition at line 173 of file parsed_function.cc.
|
private |
The object with which we do computations.
Definition at line 210 of file parsed_function.h.