Struct Rosenbrock::StepInfo

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 StepController in use.

RealT err_est_

The estimated error made by the step, as calculated by the current ErrorNorm in 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 StepController in use.