#include <mrtr_function.H>
Inheritance diagram for MOERTEL::Function:

Public Types | |
| enum | FunctionType { func_none, func_Constant1D, func_Linear1D, func_DualLinear1D, func_LinearTri, func_DualLinearTri, func_ConstantTri, func_BiLinearQuad, func_DualBiLinearQuad } |
| Type of function. More... | |
Public Member Functions | |
Constructors and destructors | |
| Function (int outlevel, MOERTEL::Function::FunctionType type) | |
| Constructor. | |
| Function (const MOERTEL::Function &old) | |
| Copy-Constructor. | |
| virtual | ~Function () |
| Destructor. | |
| virtual MOERTEL::Function * | Clone () const =0 |
| Clone method. | |
Public members | |
| int | OutLevel () |
| Return the level of output written to stdout ( 0 - 10 ). | |
| MOERTEL::Function::FunctionType | Type () const |
| Return the function type. | |
| virtual bool | EvaluateFunction (const MOERTEL::Segment &seg, const double *xi, double *val, const int valdim, double *deriv)=0 |
| Evaluate the function and derivatives at a given local coordinate. | |
Protected Attributes | |
| MOERTEL::Function::FunctionType | type_ |
| int | outputlevel_ |
|
|
Type of function.
|
|
||||||||||||
|
Constructor.
Constructs an instance of this base class.
|
|
|
Copy-Constructor.
Makes a deep copy
|
|
|
Clone method. The derived class implementing this virtual method is supposed to make a deep copy of itself and return a pointer to the copy. Implemented in MOERTEL::Function_Constant1D, MOERTEL::Function_Linear1D, MOERTEL::Function_DualLinear1D, MOERTEL::Function_LinearTri, MOERTEL::Function_DualLinearTri, and MOERTEL::Function_ConstantTri. |
|
||||||||||||||||||||||||
|
Evaluate the function and derivatives at a given local coordinate.
Implemented in MOERTEL::Function_Constant1D, MOERTEL::Function_Linear1D, MOERTEL::Function_DualLinear1D, MOERTEL::Function_LinearTri, MOERTEL::Function_DualLinearTri, and MOERTEL::Function_ConstantTri. |
1.3.9.1