Cantera
2.4.0
|
Sum of two functions. More...
#include <Func1.h>
Public Member Functions | |
Sum1 (Func1 &f1, Func1 &f2) | |
Sum1 (const Sum1 &b) | |
Sum1 & | operator= (const Sum1 &right) |
virtual int | ID () const |
virtual doublereal | eval (doublereal t) const |
Evaluate the function. More... | |
virtual Func1 & | duplicate () const |
Duplicate the current function. More... | |
virtual Func1 & | derivative () const |
Creates a derivative to the current function. More... | |
virtual int | order () const |
Return the order of the function, if it makes sense. More... | |
virtual std::string | write (const std::string &arg) const |
Public Member Functions inherited from Func1 | |
Func1 (const Func1 &right) | |
Func1 & | operator= (const Func1 &right) |
doublereal | operator() (doublereal t) const |
Calls method eval to evaluate the function. More... | |
bool | isIdentical (Func1 &other) const |
Routine to determine if two functions are the same. More... | |
virtual doublereal | isProportional (TimesConstant1 &other) |
virtual doublereal | isProportional (Func1 &other) |
doublereal | c () const |
accessor function for the stored constant More... | |
void | setC (doublereal c) |
Function to set the stored constant. More... | |
Func1 & | func1 () const |
accessor function for m_f1 More... | |
Func1 & | func2 () const |
accessor function for m_f2 More... | |
Func1 & | func1_dup () const |
Func1 & | func2_dup () const |
Func1 * | parent () const |
void | setParent (Func1 *p) |
Additional Inherited Members | |
Protected Attributes inherited from Func1 | |
doublereal | m_c |
Func1 * | m_f1 |
Func1 * | m_f2 |
Func1 * | m_parent |
|
inlinevirtual |
Evaluate the function.
Reimplemented from Func1.
Definition at line 350 of file Func1.h.
References Func1::eval().
|
inlinevirtual |
Duplicate the current function.
This duplicates the current function, returning a reference to the newly created function.
Reimplemented from Func1.
Definition at line 354 of file Func1.h.
References Func1::duplicate().
|
inlinevirtual |
Creates a derivative to the current function.
This will create a new derivative function and return a reference to the function.
Reimplemented from Func1.
Definition at line 360 of file Func1.h.
References Func1::derivative().
|
inlinevirtual |