Antkeeper
0.0.1
src
engine
physics
time
ut1.hpp
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2023 Christopher J. Howard
3
*
4
* This file is part of Antkeeper source code.
5
*
6
* Antkeeper source code is free software: you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation, either version 3 of the License, or
9
* (at your option) any later version.
10
*
11
* Antkeeper source code is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
* GNU General Public License for more details.
15
*
16
* You should have received a copy of the GNU General Public License
17
* along with Antkeeper source code. If not, see <http://www.gnu.org/licenses/>.
18
*/
19
20
#ifndef ANTKEEPER_PHYSICS_TIME_UT1_HPP
21
#define ANTKEEPER_PHYSICS_TIME_UT1_HPP
22
23
#include <
engine/math/numbers.hpp
>
24
25
namespace
physics
{
26
namespace
time {
27
29
namespace
ut1 {
30
37
template
<
class
T>
38
T
to_jd
(T t)
39
{
40
return
t + T(2451545);
41
}
42
49
template
<
class
T>
50
T
era
(T t)
51
{
52
return
math::two_pi<T> * (T(0.7790572732640) + T(1.00273781191135448) * t);
53
}
54
55
}
// namespace ut1
56
57
}
// namespace time
58
}
// namespace physics
59
60
#endif
// ANTKEEPER_PHYSICS_TIME_UT1_HPP
physics::time::ut1::era
T era(T t)
Calculates the Earth Rotation Angle (ERA) at a given UT1 date.
Definition:
ut1.hpp:50
physics::time::ut1::to_jd
T to_jd(T t)
Converts UT1 to JD.
Definition:
ut1.hpp:38
physics
Physics.
Definition:
constants.hpp:23
numbers.hpp