ModelSpace
All Classes Namespaces Functions Variables Enumerations Pages
SimTimeManager.h
1/******************************************************************************
2* Copyright (c) ATTX LLC 2024. All Rights Reserved.
3*
4* This software and associated documentation (the "Software") are the
5* proprietary and confidential information of ATTX, LLC. The Software is
6* furnished under a license agreement between ATTX and the user organization
7* and may be used or copied only in accordance with the terms of the agreement.
8* Refer to 'license/attx_license.adoc' for standard license terms.
9*
10* EXPORT CONTROL NOTICE: THIS SOFTWARE MAY INCLUDE CONTENT CONTROLLED UNDER THE
11* INTERNATIONAL TRAFFIC IN ARMS REGULATIONS (ITAR) OR THE EXPORT ADMINISTRATION
12* REGULATIONS (EAR99). No part of the Software may be used, reproduced, or
13* transmitted in any form or by any means, for any purpose, without the express
14* written permission of ATTX, LLC.
15******************************************************************************/
16/*
17Time Manager class header file
18
19Author: Alex Reynolds
20*/
21#ifndef SIM_TIME_MANAGER_H
22#define SIM_TIME_MANAGER_H
23
24#include "architecture/Time.h"
25#include "architecture/TimeManager.h"
26
27namespace modelspace {
28
29 /// @brief This is the default simulation time
30 const std::string DEFAULT_SIMULATION_TIME = "2023 September 26, 12:00:00 MDT";
31
32 /// @brief This is the offset between the GPS and J2000 epochs for calculation of GPS time
33 const double GPS_TO_J2000_ET_OFFSET = 630763200.0;
34
35 /**
36 * @brief Class to manage time for the simulation object
37 *
38 * This class uses the SPICE module to manage time within
39 * the simulation. Internally it steps the sim time and the
40 * spice ephemeris time (TDB time), which is used to cast UTC and
41 * JD time scales. All are published on the time manager.
42 *
43 * Time representations are based on the clockwerk Time class.
44 */
45 class SimTimeManager : public clockwerk::TimeManager {
46 public:
47 /// Base constructor -- time manager should initialize to zeros and then be set
49 ~SimTimeManager() {};
50
51 /// @brief Function to increment all times
52 /// @param step Time object to step by
53 virtual void stepTime(const clockwerk::Time& step);
54
55 /// ------------------------------------------------------------------
56 /// Other time functions -- These functions return other forms of time
57 /// ------------------------------------------------------------------
58 /// @brief Function to return the wall clock time since run start
59 /// @return A time object containing the time since run start
60 virtual clockwerk::Time wallClockTimer() override;
61
62 /// ------------------------------------------------------------------
63 /// Time converters
64 /// The following functions convert time between representations
65 /// ------------------------------------------------------------------
66 double str2tdb(const std::string &time_input);
67
68 /// ------------------------------------------------------------------
69 /// Useful Time Representations
70 /// The following functions return time as any one of a number of
71 /// useful representations such as UTC and GPS time
72 /// ------------------------------------------------------------------
73 /// @brief Function to return the TDB time as a string
74 /// @return TDB time as seconds since J2000
75 std::string tdbTime() {return std::to_string(tdb_time().asDouble());}
76 /// @brief Function to return the TDB time as a string
77 /// @return UTC time in the format 'YYYY MMM DD HH:MM:SS'
78 std::string utcTime();
79 /// @brief Function to return the Julian date as a string
80 /// @return Julian date as a days since the JD epoch as JDUTC
81 std::string jdTime();
82 /// @brief Function to return the GPS time as a string
83 /// @return GPS time in the format
84 std::string gpsTime();
85
86 /// ------------------------------------------------------------------
87 /// Methods to set time
88 /// The following functions allow users to set time based on string
89 /// input.
90 /// ------------------------------------------------------------------
91
92 /// @brief Function to set time by string input
93 /// @param time_input The string input by which time will be set.
94 /// valid inputs are any input which is accepted
95 /// by the SPICE function STR2ET. More info here:
96 /// https://naif.jpl.nasa.gov/pub/naif/toolkit_docs/FORTRAN/spicelib/str2et.html
97 /// This value defaults to 2023 September 26, 12:00:00 MDT
98 void setTime(const std::string &time_input=DEFAULT_SIMULATION_TIME);
99
100 /// Incrementing clocks -- these are standard clocks that begin on
101 /// start and continue incrementing as the scheduler steps forward
102 /// in time.
103 /// ------------------------------------------------------------------
104 // NOTE: All clocks provided by TimeManager are present in SimTimeManager as well.
105
106 /** TDB time is represented as seconds relative to the J2000 epoch,
107 * which is January 1, 2000, at 12:00 TT (Terrestrial Time).
108 * This is also known as "ephemeris time"*/
109 clockwerk::DataIO<clockwerk::Time> tdb_time = clockwerk::DataIO<clockwerk::Time>(this, "tdb_time");
110 protected:
111 /// Pointers to our time objects
112 clockwerk::Time* _tdb_ptr;
113
114 // Temporary variable to make time retrieval faster
115 clockwerk::Time _diff;
116 struct timespec _tmp;
117 };
118
119}
120
121#endif
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