#include <CTheoreticalModel.h>
Public Member Functions | |
CTheoreticalModel (double alpha, double beta) | |
Construct a new model using the given parameters. | |
double | algorithmA () |
calculates [some property] by implementing algorithm 2.1 on page 1 | |
void | equationB (double gamma) |
updates the model by [some parameter] according to the dynamics of equation 2.4 | |
bool | testC (double theta) |
tests [some parameter] against the model; implements equation 2.6 | |
Private Attributes | |
double | m_alpha |
[parameter] defined in equation 2.1 | |
double | m_beta |
[parameter] defined in equation 2.2 |
This is a detailed description of the model
CTheoreticalModel::CTheoreticalModel | ( | double | alpha, | |
double | beta | |||
) |
Construct a new model using the given parameters.
[in] | alpha | [parameter] defined in equation 2.1 |
[in] | beta | [parameter] defined in equation 2.2 |
double CTheoreticalModel::algorithmA | ( | ) |
calculates [some property] by implementing algorithm 2.1 on page 1
void CTheoreticalModel::equationB | ( | double | gamma | ) |
updates the model by [some parameter] according to the dynamics of equation 2.4
[in] | gamma | [parameter] defined in equation 2.3 |
bool CTheoreticalModel::testC | ( | double | theta | ) |
tests [some parameter] against the model; implements equation 2.6
[in] | theta | [some parameter] defined by equation 2.5 |
double CTheoreticalModel::m_alpha [private] |
[parameter] defined in equation 2.1
double CTheoreticalModel::m_beta [private] |
[parameter] defined in equation 2.2