DiffEq - Modern C++ ODE Integration Library 1.0.0
High-performance C++ library for solving ODEs with async signal processing
Loading...
Searching...
No Matches
diffeq::SOSRIIntegrator< StateType > Class Template Reference

SOSRI (Stability-Optimized SRI) integrator. More...

#include <sosri.hpp>

Inheritance diagram for diffeq::SOSRIIntegrator< StateType >:
Collaboration diagram for diffeq::SOSRIIntegrator< StateType >:

Public Types

using base_type = SRIIntegrator< StateType >
 
- Public Types inherited from diffeq::SRIIntegrator< StateType >
using base_type = sde::AbstractSDEIntegrator< StateType >
 
using state_type = typename base_type::state_type
 
using time_type = typename base_type::time_type
 
using value_type = typename base_type::value_type
 
using tableau_type = SRITableau< value_type >
 
- Public Types inherited from diffeq::sde::AbstractSDEIntegrator< StateType >
using state_type = StateType
 
using time_type = typename StateType::value_type
 
using value_type = typename StateType::value_type
 
using sde_problem_type = SDEProblem< StateType >
 
using wiener_process_type = WienerProcess< StateType >
 

Public Member Functions

 SOSRIIntegrator (std::shared_ptr< typename base_type::sde_problem_type > problem, std::shared_ptr< typename base_type::wiener_process_type > wiener=nullptr)
 
std::string name () const override
 
- Public Member Functions inherited from diffeq::SRIIntegrator< StateType >
 SRIIntegrator (std::shared_ptr< typename base_type::sde_problem_type > problem, std::shared_ptr< typename base_type::wiener_process_type > wiener=nullptr, tableau_type tableau=SRIIntegrator::create_sriw1_tableau())
 
void step (state_type &state, time_type dt) override
 
std::string name () const override
 
void set_tableau (const tableau_type &tableau)
 
- Public Member Functions inherited from diffeq::sde::AbstractSDEIntegrator< StateType >
 AbstractSDEIntegrator (std::shared_ptr< sde_problem_type > problem, std::shared_ptr< wiener_process_type > wiener=nullptr)
 
void integrate (state_type &state, time_type dt, time_type end_time)
 
time_type current_time () const
 
void set_time (time_type t)
 
std::shared_ptr< sde_problem_typeget_problem () const
 
std::shared_ptr< wiener_process_typeget_wiener_process () const
 
void set_wiener_process (std::shared_ptr< wiener_process_type > wiener)
 

Additional Inherited Members

- Protected Member Functions inherited from diffeq::sde::AbstractSDEIntegrator< StateType >
void advance_time (time_type dt)
 
virtual size_t get_default_dimension ()
 
- Protected Attributes inherited from diffeq::sde::AbstractSDEIntegrator< StateType >
std::shared_ptr< sde_problem_typeproblem_
 
std::shared_ptr< wiener_process_typewiener_
 
time_type current_time_
 

Detailed Description

template<system_state StateType>
class diffeq::SOSRIIntegrator< StateType >

SOSRI (Stability-Optimized SRI) integrator.

SRI integrator with stability-optimized tableau coefficients. Enhanced stability for stiff general Itô SDEs with strong order 1.5.

Definition at line 16 of file sosri.hpp.

Member Typedef Documentation

◆ base_type

template<system_state StateType>
using diffeq::SOSRIIntegrator< StateType >::base_type = SRIIntegrator<StateType>

Definition at line 18 of file sosri.hpp.

Constructor & Destructor Documentation

◆ SOSRIIntegrator()

template<system_state StateType>
diffeq::SOSRIIntegrator< StateType >::SOSRIIntegrator ( std::shared_ptr< typename base_type::sde_problem_type problem,
std::shared_ptr< typename base_type::wiener_process_type wiener = nullptr 
)
inlineexplicit

Definition at line 20 of file sosri.hpp.

Member Function Documentation

◆ name()

template<system_state StateType>
std::string diffeq::SOSRIIntegrator< StateType >::name ( ) const
inlineoverridevirtual

Implements diffeq::sde::AbstractSDEIntegrator< StateType >.

Definition at line 24 of file sosri.hpp.


The documentation for this class was generated from the following file: