numerics
Loading...
Searching...
No Matches
num::ODEResult Struct Reference

Result returned by general ODE integrators. More...

#include <ode.hpp>

Public Attributes

Vector y
 Final state vector.
 
real t
 Final time.
 
idx steps
 Number of (accepted) steps taken.
 
bool converged
 Always true for fixed-step; false if rk45 hit max_steps.
 

Detailed Description

Result returned by general ODE integrators.

Definition at line 48 of file ode.hpp.

Member Data Documentation

◆ converged

bool num::ODEResult::converged

Always true for fixed-step; false if rk45 hit max_steps.

Definition at line 52 of file ode.hpp.

◆ steps

idx num::ODEResult::steps

Number of (accepted) steps taken.

Definition at line 51 of file ode.hpp.

◆ t

real num::ODEResult::t

Final time.

Definition at line 50 of file ode.hpp.

◆ y

Vector num::ODEResult::y

Final state vector.

Definition at line 49 of file ode.hpp.


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