Struct Rosenbrock::StepInfo
Defined in File Rosenbrock.hpp
Nested Relationships
This struct is a nested type of Template Class Rosenbrock.
Struct Documentation
-
struct StepInfo
Keeps track of a variety of notable properties of a single step.
Public Members
-
RealT sim_time_
The simulation time at the beginning of the step.
-
RealT step_size_
The size of the step.
-
RealT next_step_size_
The size of the next step, as governed by the current
StepControllerin use.
-
RealT err_est_
The estimated error made by the step, as calculated by the current
ErrorNormin use.
-
size_t step_no_
The step number, starting at 1.
-
bool skip_lu_
Whether or not the integrator decided to skip computing the decomposition of the Jacobian on this step.
-
bool skip_f_
Whether or not the integrator decided to skip evaluating the residual on the first stage on this step.
-
bool accepted_
Whether or not this step was accepted by the
StepControllerin use.
-
RealT sim_time_