OSFEG-C++
1.4.6
OpenSF Error Generation Library
|
#include <Sampled.h>
Public Member Functions | |
double | getValue (double time) |
~Sampled () | |
Sampled (string type) | |
![]() | |
Analytical (string type) | |
Analytical (double value) | |
virtual | ~Analytical () |
![]() | |
Composite () | |
Composite (const Composite &)=delete | |
Composite & | operator= (const Composite &)=delete |
Composite (Composite &&)=default | |
Composite & | operator= (Composite &&)=default |
virtual | ~Composite () |
void | add (Composite *node) |
void | remove (Composite *node) |
Composite * | getChild (int index) |
bool | hasChildNodes () const |
Protected Attributes | |
vector< double > | A |
Pre-computed data for the spline-based interpolation (3rd order coefficients) | |
vector< double > | B |
Pre-computed data for the spline-based interpolation (2nd order coefficients) | |
vector< double > | C |
Pre-computed data for the spline-based interpolation (1st order coefficients) | |
![]() | |
double | value |
Fixed value (for float) | |
string | type |
Type of value (currently only "Float") | |
![]() | |
std::vector< Composite * > | children |
Composite * | parent |
Calculates a perturbation modeled as a number of points that need to be interpolated.
It implements five different functions, returning the interpolation value modeled as:
Sampled::~Sampled | ( | ) |
Sampled class destructor
Sampled::Sampled | ( | string | type | ) |
Sampled class constructor
type | String with the error type description. |
|
virtual |
Returns the value of a perturbation that needs an interpolation to be defined.
Overwrites method getValue from parent class Analytical.
time | Double with the time in which the error is evaluated. |
Reimplemented from Analytical.