diff --git a/src/systems/si/include/units/si/unit_symbols.h b/src/systems/si/include/units/si/unit_symbols.h index 49a4418b..ed748874 100644 --- a/src/systems/si/include/units/si/unit_symbols.h +++ b/src/systems/si/include/units/si/unit_symbols.h @@ -60,6 +60,7 @@ inline constexpr auto ms = milli; inline constexpr auto cs = centi; inline constexpr auto ds = deci; inline constexpr auto s = second; +// TODO Should the below multiples of second be provided? inline constexpr auto das = deca; inline constexpr auto hs = hecto; inline constexpr auto ks = kilo; @@ -489,8 +490,6 @@ inline constexpr auto EH = exa; inline constexpr auto ZH = zetta; inline constexpr auto YH = yotta; -inline constexpr auto deg_C = degree_Celsius; - inline constexpr auto ylm = yocto; inline constexpr auto zlm = zepto; inline constexpr auto alm = atto; @@ -623,9 +622,7 @@ inline constexpr auto Ekat = exa; inline constexpr auto Zkat = zetta; inline constexpr auto Ykat = yotta; -inline constexpr auto min = minute; -inline constexpr auto h = hour; -inline constexpr auto d = day; +// TODO Should the following non-SI units have prefixes symbols predefiend as well? inline constexpr auto au = astronomical_unit; inline constexpr auto a = are; inline constexpr auto ha = hectare; @@ -634,4 +631,10 @@ inline constexpr auto t = tonne; inline constexpr auto Da = dalton; inline constexpr auto eV = electronvolt; +// No prefixes should be provided for the below units +inline constexpr auto deg_C = degree_Celsius; +inline constexpr auto min = minute; +inline constexpr auto h = hour; +inline constexpr auto d = day; + } // namespace units::si::unit_symbols