TimeSequenceStepper

This time stepper derives from TimeSequenceStepperBase and provides the sequence of time values from a user-specified list, given by "time_sequence".

See Failed solves for information on the behavior of this time stepper for failed time steps.

Example input syntax

In this example, the numerical problem is solved at four specified points in time using a TimeSequenceStepper.

[Executioner]
  type = Transient
  end_time = 4.0
  [./TimeStepper]
    type = TimeSequenceStepper
    time_sequence = '0   0.85 1.3 2 4'
  [../]
[]
(test/tests/time_steppers/timesequence_stepper/timesequence.i)

Input Parameters

  • time_sequenceThe values of t

    C++ Type:std::vector<double>

    Controllable:No

    Description:The values of t

Required Parameters

  • cutback_factor_at_failure0.5Factor to apply to timestep if a time step fails to converge.

    Default:0.5

    C++ Type:double

    Controllable:No

    Description:Factor to apply to timestep if a time step fails to converge.

  • reset_dtFalseUse when restarting a calculation to force a change in dt.

    Default:False

    C++ Type:bool

    Controllable:No

    Description:Use when restarting a calculation to force a change in dt.

  • use_last_dt_after_last_tFalseIf true, uses the final time step size for times after the last time in the sequence, instead of taking a single step directly to the simulation end time

    Default:False

    C++ Type:bool

    Controllable:No

    Description:If true, uses the final time step size for times after the last time in the sequence, instead of taking a single step directly to the simulation end time

Optional Parameters

  • control_tagsAdds user-defined labels for accessing object parameters via control logic.

    C++ Type:std::vector<std::string>

    Controllable:No

    Description:Adds user-defined labels for accessing object parameters via control logic.

  • enableTruewhether or not to enable the time stepper

    Default:True

    C++ Type:bool

    Controllable:Yes

    Description:whether or not to enable the time stepper

Advanced Parameters

Input Files

Child Objects