2
3
4
5
6
7
8
9
10
11
12
13
14
15
17
18
19
20
21#ifndef SIM_TIME_MANAGER_H
22#define SIM_TIME_MANAGER_H
24#include "architecture/Time.h"
25#include "architecture/TimeManager.h"
36
37
38
39
40
41
42
43
44
66 double str2tdb(
const std::string &time_input);
107
108
115 clockwerk::
Time _diff;
116 struct timespec _tmp;
Class for inter-object communication.
Definition DataIO.hpp:46
const T & operator()()
Overloaded operator to return value of DataIO object.
Definition DataIO.hpp:129
The time manager class is a class to manage various time variables. It maintains 4 times – base time,...
Definition TimeManager.h:38
Wrapper to manage and convert time as timespce.
Definition Time.h:45
Class to manage time for the simulation object.
Definition SimTimeManager.h:45
SimTimeManager()
Base constructor – time manager should initialize to zeros and then be set.
Definition SimTimeManager.cpp:22
clockwerk::DataIO< clockwerk::Time > tdb_time
Incrementing clocks – these are standard clocks that begin on start and continue incrementing as the ...
Definition SimTimeManager.h:109
std::string gpsTime()
Function to return the GPS time as a string.
Definition SimTimeManager.cpp:76
double str2tdb(const std::string &time_input)
Definition SimTimeManager.cpp:58
virtual clockwerk::Time wallClockTimer() override
Function to return the wall clock time since run start.
Definition SimTimeManager.cpp:43
std::string tdbTime()
Function to return the TDB time as a string.
Definition SimTimeManager.h:75
clockwerk::Time * _tdb_ptr
Pointers to our time objects.
Definition SimTimeManager.h:112
virtual void stepTime(const clockwerk::Time &step)
Function to increment all times.
Definition SimTimeManager.cpp:31
void setTime(const std::string &time_input=DEFAULT_SIMULATION_TIME)
Function to set time by string input.
Definition SimTimeManager.cpp:80
std::string utcTime()
Function to return the TDB time as a string.
Definition SimTimeManager.cpp:64
std::string jdTime()
Function to return the Julian date as a string.
Definition SimTimeManager.cpp:70
Class to propagate CR3BP dynamics in characteristic units.
Definition ConfigurationWriter.cpp:18
const std::string DEFAULT_SIMULATION_TIME
This is the default simulation time.
Definition SimTimeManager.h:30
const double GPS_TO_J2000_ET_OFFSET
This is the offset between the GPS and J2000 epochs for calculation of GPS time.
Definition SimTimeManager.h:33