|
Cantera 2.6.0
|
Fourier cosine/sine series. More...
#include <Func1.h>
Public Member Functions | |
| Fourier1 (size_t n, double omega, double a0, const double *a, const double *b) | |
| Fourier1 (const Fourier1 &b) | |
| Fourier1 & | operator= (const Fourier1 &right) |
| virtual Func1 & | duplicate () const |
| Duplicate the current function. More... | |
| virtual doublereal | eval (doublereal t) const |
| Evaluate the function. More... | |
Public Member Functions inherited from Func1 | |
| Func1 (const Func1 &right) | |
| Func1 & | operator= (const Func1 &right) |
| virtual int | ID () const |
| doublereal | operator() (doublereal t) const |
| Calls method eval to evaluate the function. More... | |
| virtual Func1 & | derivative () const |
| Creates a derivative to the current 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) |
| virtual std::string | write (const std::string &arg) const |
| 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... | |
| virtual int | order () const |
| Return the order of the function, if it makes sense. More... | |
| Func1 & | func1_dup () const |
| Func1 & | func2_dup () const |
| Func1 * | parent () const |
| void | setParent (Func1 *p) |
Protected Attributes | |
| doublereal | m_omega |
| doublereal | m_a0_2 |
| vector_fp | m_ccos |
| vector_fp | m_csin |
Protected Attributes inherited from Func1 | |
| doublereal | m_c |
| Func1 * | m_f1 |
| Func1 * | m_f2 |
| Func1 * | m_parent |
Fourier cosine/sine series.
\[ f(t) = \frac{A_0}{2} + \sum_{n=1}^N A_n \cos (n \omega t) + B_n \sin (n \omega t) \]
|
inline |
|
inlinevirtual |
|
inlinevirtual |