LILAC
|
Dormand-Prince integrator. More...
#include <rk45.h>
Public Member Functions | |
const std::type_info & | vtype () const |
void | postprocess (input &dat) |
std::vector< std::string > | dependencies () const |
std::string | type () const |
int | integrate (ptr_passer u, double t0, double tf) |
~rk45 () | |
![]() | |
virtual void | initial_condition (ptr_passer in, size_t len) |
void | initial_condition (ptr_passer in) |
virtual | ~integrator () |
Blank destructor for integrator. | |
![]() | |
size_t | get_dimension () const |
![]() | |
item () | |
virtual | ~item () |
virtual void | print () const |
Standard print function. | |
virtual void | update () |
void | setname (const std::string n) |
void | set_write_name (std::string wname) |
const std::string & | name () const |
const std::string & | write_name () const |
![]() | |
bool | compare (const vartype *in) const |
bool | compare (const vartype &in) const |
bool | compare (const std::type_info &tinf) |
template<typename T > | |
bool | compare () const |
template<typename T > | |
bool | compare (const T &in) const |
std::string | vname () const |
virtual const std::type_info & | vtype_internal () const |
bool | compare_internal (const vartype *in) const |
bool | compare_internal (const vartype &in) const |
bool | compare_internal (const std::type_info &tinf) |
template<typename T > | |
bool | compare_internal () const |
template<typename T > | |
bool | compare_internal (const T &in) const |
std::string | vname_internal () const |
virtual | ~vartype () |
Protected Attributes | |
std::shared_ptr< rk45 > | actual |
![]() | |
rhs * | rh_val |
![]() | |
mempool | memp |
std::set< item_dim * > | children |
item_dim * | parent |
size_t | dimension |
![]() | |
std::string | _name |
std::string | _write_name |
char | has_write_name |
Additional Inherited Members | |
![]() | |
static std::shared_ptr< item > | create (std::string name, engineimp *rval) |
![]() | |
engineimp * | holder |
![]() | |
void | print_upstream () |
virtual void | _do_mem_update (size_t dim_old) |
void | add_as_parent (item_dim *p) |
void | add_as_parent (std::shared_ptr< item_dim > p) |
void | update_dim (size_t dim_new) |
Dormand-Prince integrator.
This class defines a Dormand-Prince integrator, the same type used by the Matlab function ODE45
|
virtual |
Implements integrator.
Definition at line 35 of file rk45.cpp.
|
virtual |
|
virtual |
Reimplemented from integrator.
Reimplemented in rk45_tmpl< T >.
Definition at line 42 of file rk45.cpp.
|
virtual |
|
virtual |