2022-05-22 19:51:35 +02:00
|
|
|
// The MIT License (MIT)
|
|
|
|
//
|
|
|
|
// Copyright (c) 2018 Mateusz Pusz
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
|
|
// copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
// SOFTWARE.
|
|
|
|
|
2023-05-25 12:47:10 +02:00
|
|
|
#include <mp-units/format.h>
|
|
|
|
#include <mp-units/systems/si/constants.h>
|
|
|
|
#include <mp-units/systems/si/unit_symbols.h>
|
2022-05-22 19:51:35 +02:00
|
|
|
#include <iostream>
|
|
|
|
|
2022-12-20 17:26:55 +01:00
|
|
|
template<class T>
|
2022-12-29 20:18:48 +01:00
|
|
|
requires mp_units::is_scalar<T>
|
|
|
|
inline constexpr bool mp_units::is_vector<T> = true;
|
2022-12-20 17:26:55 +01:00
|
|
|
|
2022-05-22 19:51:35 +02:00
|
|
|
int main()
|
|
|
|
{
|
2022-12-29 20:18:48 +01:00
|
|
|
using namespace mp_units::si;
|
|
|
|
using namespace mp_units::si::unit_symbols;
|
2022-05-22 19:51:35 +02:00
|
|
|
|
|
|
|
std::cout << "The seven defining constants of the SI and the seven corresponding units they define:\n";
|
2023-05-26 13:53:52 +02:00
|
|
|
std::cout << UNITS_STD_FMT::format("- hyperfine transition frequency of Cs: {} = {:%.0Q %q}\n",
|
2023-05-26 14:20:00 +02:00
|
|
|
1. * si2019::hyperfine_structure_transition_frequency_of_cs,
|
|
|
|
(1. * si2019::hyperfine_structure_transition_frequency_of_cs)[Hz]);
|
2023-05-26 13:53:52 +02:00
|
|
|
std::cout << UNITS_STD_FMT::format("- speed of light in vacuum: {} = {:%.0Q %q}\n",
|
2023-05-26 14:20:00 +02:00
|
|
|
1. * si2019::speed_of_light_in_vacuum,
|
|
|
|
(1. * si2019::speed_of_light_in_vacuum)[m / s]);
|
2023-05-26 13:53:52 +02:00
|
|
|
std::cout << UNITS_STD_FMT::format("- Planck constant: {} = {:%.8eQ %q}\n",
|
2023-05-26 14:20:00 +02:00
|
|
|
1. * si2019::planck_constant, (1. * si2019::planck_constant)[J * s]);
|
2023-05-26 13:53:52 +02:00
|
|
|
std::cout << UNITS_STD_FMT::format("- elementary charge: {} = {:%.9eQ %q}\n",
|
2023-05-26 14:20:00 +02:00
|
|
|
1. * si2019::elementary_charge, (1. * si2019::elementary_charge)[C]);
|
2023-05-26 13:53:52 +02:00
|
|
|
std::cout << UNITS_STD_FMT::format("- Boltzmann constant: {} = {:%.6eQ %q}\n",
|
2023-05-26 14:20:00 +02:00
|
|
|
1. * si2019::boltzmann_constant, (1. * si2019::boltzmann_constant)[J / K]);
|
2023-05-26 13:53:52 +02:00
|
|
|
std::cout << UNITS_STD_FMT::format("- Avogadro constant: {} = {:%.8eQ %q}\n",
|
2023-05-26 14:20:00 +02:00
|
|
|
1. * si2019::avogadro_constant, (1. * si2019::avogadro_constant)[1 / mol]);
|
2022-12-20 10:42:13 +01:00
|
|
|
// TODO uncomment the below when ISQ is done
|
2023-05-26 14:20:00 +02:00
|
|
|
// std::cout << UNITS_STD_FMT::format("- luminous efficacy: {} = {}\n",
|
|
|
|
// si2019::luminous_efficacy(1.),
|
2022-12-22 18:06:20 +01:00
|
|
|
// si2019::luminous_efficacy(1.)[lm / W]);
|
2022-05-22 19:51:35 +02:00
|
|
|
}
|