24 virtual void init()
override;
Computes time step size based on a target number of fixed point iterations.
const Real _dt_initial
Initial time step size.
virtual Real computeInitialDT() override
Computes time step size for the initial time step.
Real & _dt_old
Old time step size.
virtual void acceptStep() override
This gets called when time step is accepted.
const unsigned int _target_center
Target number of fixed point iterations.
const Real _increase_factor
Factor by which to increase time steps.
static InputParameters validParams()
const unsigned int _target_max
Maximum fixed point iterations of window.
unsigned int & _fp_its
Number of fixed point iterations in previous solve.
virtual Real computeDT() override
Computes time step size after the initial time step.
const unsigned int _target_min
Minimum fixed point iterations of window.
virtual void init() override
Initialize the time stepper.
const unsigned int _target_window
Number subtracted/added to determine window min and max.
const Real _decrease_factor
Factor by which to decrease time steps.
const InputParameters & parameters() const
Get the parameters of the object.
Base class for time stepping.