10 #ifndef SRC_INCLUDE_SMASH_CLOCK_H_
11 #define SRC_INCLUDE_SMASH_CLOCK_H_
26 static constexpr
int LClock = LogArea::Clock::id;
104 virtual void reset(
double start_time,
bool is_output_clock) = 0;
121 if (
counter_ >= std::numeric_limits<Representation>::max() - 1) {
122 throw std::overflow_error(
"Too many timesteps, clock overflow imminent");
137 if (
counter_ >= std::numeric_limits<Representation>::max() -
138 advance_several_timesteps) {
139 throw std::overflow_error(
"Too many timesteps, clock overflow imminent");
141 counter_ += advance_several_timesteps;
240 throw std::range_error(
"Time increment must be positive and non-zero");
243 throw std::range_error(
244 "The initial time of UniformClock must be smaller than the end time. "
245 "(Attempt to set initial time to " +
246 std::to_string(time) +
" and end time to " +
247 std::to_string(time_end) +
" not possible)");
273 throw std::overflow_error(
"Too many timesteps, clock overflow imminent");
279 return convert(next_point_in_time);
292 logg[
LClock].warn() <<
"UniformClock asked for timestep duration beyond "
293 "end of simulation, returning 0.";
308 throw std::range_error(
"Time increment must be positive and non-zero!");
321 void reset(
double start_time,
bool is_output_clock)
override {
323 if (is_output_clock) {
325 reset_time = std::floor(start_time / delta_t) * delta_t;
327 reset_time = start_time;
347 template <
typename T>
348 typename std::enable_if<std::is_floating_point<T>::value,
Clock&>::type
350 if (big_timestep < 0.) {
351 throw std::range_error(
"The clock cannot be turned back.");
365 if (
counter_ >= std::numeric_limits<Representation>::max() -
366 advance_several_timesteps) {
367 throw std::overflow_error(
"Too many timesteps, clock overflow imminent");
369 counter_ += advance_several_timesteps;
391 return numeric_cast<Representation>(std::round(x *
from_double));
428 throw std::runtime_error(
429 "Trying to access time of clock in invalid state.");
453 void reset(
double start_time,
bool)
override {
466 [start_time](
double t) {
467 if (t <= start_time) {
468 logg[LClock].warn(
"Removing custom output time ", t,
469 " fm since it is earlier than the "
470 "starting time of the simulation");
492 double start_time_ = 0.;
Clock tracks the time in the simulation.
bool operator<(double time) const
Compares the internal time of the clock against a fixed time.
bool operator<(const Clock &rhs) const
Compares the internal times of two clocks.
std::int64_t Representation
The type used for counting ticks/time.
virtual double current_time() const =0
virtual double timestep_duration() const =0
virtual double present_internal_time() const =0
This function always returns the clock time, even if children might attribute a different behaviour t...
virtual void reset(double start_time, bool is_output_clock)=0
Reset the clock to the starting time of the simulation.
Representation counter_
Internally used to count the number of time steps.
bool operator>(double time) const
Compares the internal time of the clock against a fixed time.
Clock & operator++()
Advances the clock by one tick.
virtual double next_time() const =0
virtual void remove_times_in_past(double start_time)=0
Remove output times before the starting time of the simulation if this is a custom clock.
Clock & operator+=(Representation advance_several_timesteps)
Advances the clock by an arbitrary number of ticks.
Clock with explicitly defined time steps.
double next_time() const override
CustomClock(std::vector< double > times)
Initialises a custom clock with explicitly given output times.
double start_time_
Starting time of the simulation.
void remove_times_in_past(double start_time) override
Remove all custom times before start_time.
std::vector< double > custom_times_
Vector of times where output is generated.
void reset(double start_time, bool) override
Reset the clock to the starting time of the simulation.
double present_internal_time() const override
For the CustomClock, the internal time is basically by design the same as what the current_time() met...
double timestep_duration() const override
double current_time() const override
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
static constexpr int LClock