mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
units.hpp
Go to the documentation of this file.
1/** \file units.hpp
2 * \author Jared R. Males (jaredmales@gmail.com)
3 * \brief Unit specifications and conversions.
4 * \ingroup astrofiles
5 *
6 */
7
8#ifndef __mx_astro_units_hpp__
9#define __mx_astro_units_hpp__
10
11#include "constants.hpp"
12
13namespace mx
14{
15
16namespace astro
17{
18
19namespace units
20{
21
22/** \defgroup astrounits Unit Conversions
23 * \brief Definitions of unit coversions for physical constants.
24 * \ingroup phyconstants
25 *
26 * These types provide the ratios to convert from SI units to the desired system.
27 *
28 * @{
29 */
30
31/// International System of Units (SI) units-type
32/** Since all constants are specified in SI units, all conversions here are 1.0.
33 */
34template <typename _realT>
35struct si
36{
37 typedef _realT realT; ///< The real floating point type in which to specify constants.
38 static constexpr realT length = static_cast<realT>( 1.0 ); ///< Conversion from SI (m) to SI (m)
39 static constexpr realT time = static_cast<realT>( 1.0 ); ///< Conversion from SI (s) to SI (s)
40 static constexpr realT mass = static_cast<realT>( 1.0 ); ///< Conversion from SI (kg) to SI (kg)
41 static constexpr realT energy = static_cast<realT>( 1.0 ); ///< Conversion from SI (J) to SI (J)
42 static constexpr realT temperature = static_cast<realT>( 1.0 ); ///< Conversion from SI (K) to SI (K)
43};
44
45/// Centimeter-Gram-Second (cgs) units-type
46/** The units are:
47 * - Length: centimeter (cm)
48 * - Time: second (s)
49 * - Mass: gram (g)
50 * - Energy: erg (erg)
51 * - Temperature: Kelvin (K)
52 */
53template <typename _realT>
54struct cgs
55{
56 typedef _realT realT; ///< The real floating point type in which to specify constants.
57 static constexpr realT length = static_cast<realT>( 100.0 ); ///< Conversion from SI (m) to cgs (cm)
58 static constexpr realT time = static_cast<realT>( 1.0 ); ///< Conversion from SI (s) to cgs (s)
59 static constexpr realT mass = static_cast<realT>( 1000.0 ); ///< Conversion from SI (kg) to cgs (g)
60 static constexpr realT energy = static_cast<realT>( 1e7 ); ///< Conversion from SI (J) to cgs (erg)
61 static constexpr realT temperature = static_cast<realT>( 1.0 ); ///< Conversion from SI (K) to cgs (K)
62};
63
64/// Solar units-type
65/** The units are:
66 * - Length: au
67 * - Time: year
68 * - Mass: solar mass
69 * - Energy: solar-luminosity-year
70 * - Temperature: solar effective temperature
71 */
72template <typename _realT>
73struct solar
74{
75 typedef _realT realT; ///< The real floating point type in which to specify constants.
76 static constexpr realT length =
77 static_cast<realT>( 1 ) / constants::au<si<realT>>(); ///< Conversion from SI (m) to solar (au)
78 static constexpr realT time =
79 static_cast<realT>( 1.0 ) / constants::year<si<realT>>(); ///< Conversion from SI (s) to solar (yr)
80 static constexpr realT mass =
81 constants::G<si<realT>>() / constants::GMSun<si<realT>>(); ///< Conversion from SI (kg) to solar (M_sun)
82 static constexpr realT energy =
83 static_cast<realT>( 1.0 ) /
84 ( constants::lumSun<si<realT>>() * static_cast<realT>( 365.25 ) *
85 static_cast<realT>( 86400.0 ) ); ///< Conversion from SI (J) to solar (Solar-luminosities X year)
86 static constexpr realT temperature =
87 static_cast<realT>( 1.0 ) / constants::TeffSun<si<realT>>(); ///< Conversion from SI (K) to solar (5772 K)
88};
89
90/// Earth units-type
91/** The units are:
92 * - Length: Earth-radii
93 * - Time: s
94 * - Mass: Earth mass
95 * - Energy: J
96 * - Temperature: K
97 */
98template <typename _realT>
99struct earth
100{
101 typedef _realT realT; ///< The real floating point type in which to specify constants.
102 static constexpr realT length =
103 static_cast<realT>( 1 ) / constants::radEarth<si<realT>>(); ///< Conversion from SI (m)
104 static constexpr realT time = static_cast<realT>( 1.0 ); ///< Conversion from SI (s)
105 static constexpr realT mass =
106 static_cast<realT>( 1.0 ) / constants::massEarth<si<realT>>(); ///< Conversion from SI (kg)
107 static constexpr realT energy = static_cast<realT>( 1.0 ); ///< Conversion from SI (J)
108 static constexpr realT temperature = static_cast<realT>( 1.0 ); ///< Conversion from SI (K)
109};
110
111/// Jupiter units-type
112/** The units are:
113 * - Length: Jupiter-radii
114 * - Time: s
115 * - Mass: Jupiter mass
116 * - Energy: J
117 * - Temperature: K
118 */
119template <typename _realT>
121{
122 typedef _realT realT; ///< The real floating point type in which to specify constants.
123 static constexpr realT length =
124 static_cast<realT>( 1 ) / constants::radJupiter<si<realT>>(); ///< Conversion from SI (m)
125 static constexpr realT time = static_cast<realT>( 1.0 ); ///< Conversion from SI (s)
126 static constexpr realT mass =
127 static_cast<realT>( 1.0 ) / constants::massJupiter<si<realT>>(); ///< Conversion from SI (kg)
128 static constexpr realT energy = static_cast<realT>( 1.0 ); ///< Conversion from SI (J)
129 static constexpr realT temperature = static_cast<realT>( 1.0 ); ///< Conversion from SI (K)
130};
131
132///@}
133
134} // namespace units
135
136} // namespace astro
137} // namespace mx
138
139#endif //__mx_astro_units_hpp__
constexpr units::realT year()
Length of year.
constexpr units::realT radEarth()
Radius of Earth (nominal equatorial)
constexpr units::realT radJupiter()
Radius of Jupiter (nominal equatorial)
constexpr units::realT lumSun()
Luminosity of the Sun.
constexpr units::realT GMSun()
Solar Mass Parameter.
constexpr units::realT massEarth()
Earth Mass.
constexpr units::realT au()
Astronomical Unit.
constexpr units::realT TeffSun()
Effective Temperature of the Sun.
constexpr units::realT massJupiter()
Jupiter Mass.
The mxlib c++ namespace.
Definition mxError.hpp:106
Centimeter-Gram-Second (cgs) units-type.
Definition units.hpp:55
_realT realT
The real floating point type in which to specify constants.
Definition units.hpp:56
static constexpr realT length
Conversion from SI (m) to cgs (cm)
Definition units.hpp:57
static constexpr realT temperature
Conversion from SI (K) to cgs (K)
Definition units.hpp:61
static constexpr realT mass
Conversion from SI (kg) to cgs (g)
Definition units.hpp:59
static constexpr realT energy
Conversion from SI (J) to cgs (erg)
Definition units.hpp:60
static constexpr realT time
Conversion from SI (s) to cgs (s)
Definition units.hpp:58
Earth units-type.
Definition units.hpp:100
static constexpr realT energy
Conversion from SI (J)
Definition units.hpp:107
static constexpr realT mass
Conversion from SI (kg)
Definition units.hpp:105
static constexpr realT length
Conversion from SI (m)
Definition units.hpp:102
static constexpr realT temperature
Conversion from SI (K)
Definition units.hpp:108
_realT realT
The real floating point type in which to specify constants.
Definition units.hpp:101
static constexpr realT time
Conversion from SI (s)
Definition units.hpp:104
Jupiter units-type.
Definition units.hpp:121
_realT realT
The real floating point type in which to specify constants.
Definition units.hpp:122
static constexpr realT mass
Conversion from SI (kg)
Definition units.hpp:126
static constexpr realT temperature
Conversion from SI (K)
Definition units.hpp:129
static constexpr realT time
Conversion from SI (s)
Definition units.hpp:125
static constexpr realT energy
Conversion from SI (J)
Definition units.hpp:128
static constexpr realT length
Conversion from SI (m)
Definition units.hpp:123
International System of Units (SI) units-type.
Definition units.hpp:36
static constexpr realT mass
Conversion from SI (kg) to SI (kg)
Definition units.hpp:40
static constexpr realT temperature
Conversion from SI (K) to SI (K)
Definition units.hpp:42
static constexpr realT length
Conversion from SI (m) to SI (m)
Definition units.hpp:38
_realT realT
The real floating point type in which to specify constants.
Definition units.hpp:37
static constexpr realT time
Conversion from SI (s) to SI (s)
Definition units.hpp:39
static constexpr realT energy
Conversion from SI (J) to SI (J)
Definition units.hpp:41
Solar units-type.
Definition units.hpp:74
static constexpr realT length
Conversion from SI (m) to solar (au)
Definition units.hpp:76
_realT realT
The real floating point type in which to specify constants.
Definition units.hpp:75
static constexpr realT time
Conversion from SI (s) to solar (yr)
Definition units.hpp:78
static constexpr realT temperature
Conversion from SI (K) to solar (5772 K)
Definition units.hpp:86
static constexpr realT energy
Conversion from SI (J) to solar (Solar-luminosities X year)
Definition units.hpp:82
static constexpr realT mass
Conversion from SI (kg) to solar (M_sun)
Definition units.hpp:80