Times
Times objects are used to:
keep track of the times of events during MOOSE-based simulations
provide a centralized place to input times, so objects can pull in the same times parameters
These tasks may be performed dynamically during the simulation, in which case a custom initialize()
or execute()
routine may be implemented for the Times object.
Combining Times
Times
from multiple sources may be concatenated using the ReporterTimes.
Available Objects
- Moose App
- CSVFileTimesImport times from one or more files.
- ExodusFileTimesImport times from one or more Exodus files.
- FunctorTimesTimes created by evaluating a functor at the (0,0,0) point and the current time
- InputTimesTimes set directly from a user parameter in the input file
- ReporterTimesImport times from one or more reporters, for example other Times
- SimulationTimesTimes simulated
- TimeIntervalTimesTimes between a start time and end time with a fixed time interval.
Available Actions
- Moose App
- AddTimesActionAdd a Times object to the simulation.