SIMLIB/C++
3.07
|
base for single-step integration methods More...
#include <simlib.h>
Public Member Functions | |
SingleStepMethod (const char *name) | |
virtual bool | IsSingleStep (void) override |
void | SetStartMode (bool start_mode) |
bool | IsStartMode (void) |
![]() | |
IntegrationMethod (const char *name) | |
register method to list of methods and name it More... | |
virtual | ~IntegrationMethod () |
destroy integration method (remove from list) More... | |
virtual void | TurnOff (void) |
turn off integration method: flush memories etc... More... | |
virtual void | Integrate (void)=0 |
virtual bool | PrepareStep (void) |
prepare object for integration step More... | |
virtual void | Resize (size_t size) |
resize all the memories to the given size More... | |
Private Attributes | |
bool | StartMode |
Additional Inherited Members | |
![]() | |
static void | StepSim (void) |
step of numerical integration method More... | |
static void | IntegrationDone (void) |
static void | SetMethod (const char *name) |
set method which will be used More... | |
static const char * | GetMethod (void) |
static void | InitStep (double step_frag) |
initialize step More... | |
static void | FunCall (double step_frag) |
static void | SetOptStep (double opt_step) |
static void | SetStepSize (double step_size) |
static bool | IsConditionFlag (void) |
static int | GetErrNo (void) |
static void | SetErrNo (int num) |
![]() | |
typedef IntegratorContainer::iterator | Iterator |
![]() | |
static Iterator | FirstIntegrator (void) |
static Iterator | LastIntegrator (void) |
static bool | StateCond (void) |
check on changes of state conditions More... | |
static IntegrationMethod * | SearchMethod (const char *name) |
search method in the list of registrated methods More... | |
![]() | |
static bool | IsEndStepEvent =false |
|
inlineexplicit |
|
inlineoverridevirtual |
Implements simlib3::IntegrationMethod.
|
inline |
Definition at line 1154 of file simlib.h.
Referenced by simlib3::RKF3::Integrate(), simlib3::RKF5::Integrate(), simlib3::RKF8::Integrate(), simlib3::EULER::Integrate(), and simlib3::RKE::Integrate().
|
inline |
Definition at line 1151 of file simlib.h.
Referenced by simlib3::MultiStepMethod::PrepareStep(), and simlib3::MultiStepMethod::TurnOff().