2022-12-19 20:44:18 +01: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-02-03 16:57:48 +01:00
|
|
|
#include <mp_units/iostream.h>
|
2022-12-29 20:18:48 +01:00
|
|
|
#include <mp_units/math.h>
|
|
|
|
#include <mp_units/systems/isq/mechanics.h>
|
|
|
|
#include <mp_units/systems/natural/natural.h>
|
|
|
|
#include <mp_units/systems/si/constants.h>
|
|
|
|
#include <mp_units/systems/si/unit_symbols.h>
|
2022-12-19 20:44:18 +01:00
|
|
|
#include <exception>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
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-19 20:44:18 +01:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2022-12-29 20:18:48 +01:00
|
|
|
using namespace mp_units;
|
2022-12-19 20:44:18 +01:00
|
|
|
|
2023-02-03 16:58:33 +01:00
|
|
|
QuantityOf<isq::mechanical_energy> auto total_energy(WeakQuantityOf<isq::momentum> auto p,
|
|
|
|
WeakQuantityOf<isq::mass> auto m,
|
|
|
|
WeakQuantityOf<isq::speed> auto c)
|
2022-12-19 20:44:18 +01:00
|
|
|
{
|
|
|
|
return quantity_cast<isq::mechanical_energy>(sqrt(pow<2>(p * c) + pow<2>(m * pow<2>(c))));
|
|
|
|
}
|
|
|
|
|
|
|
|
void si_example()
|
|
|
|
{
|
2022-12-29 20:18:48 +01:00
|
|
|
using namespace mp_units::si::unit_symbols;
|
2022-12-19 20:44:18 +01:00
|
|
|
constexpr auto GeV = si::giga<si::electronvolt>;
|
|
|
|
|
2023-02-03 16:58:33 +01:00
|
|
|
constexpr QuantityOf<isq::speed> auto c = si::si2019::speed_of_light_in_vacuum(1.);
|
|
|
|
const WeakQuantityOf<isq::momentum> auto p1 = isq::mechanical_energy(4., GeV) / c;
|
|
|
|
const WeakQuantityOf<isq::mass> auto m1 = isq::mechanical_energy(3., GeV) / pow<2>(c);
|
2022-12-19 20:44:18 +01:00
|
|
|
const auto E = total_energy(p1, m1, c);
|
|
|
|
|
|
|
|
std::cout << "\n*** SI units (c = " << c << " = " << c[si::metre / s] << ") ***\n";
|
|
|
|
|
|
|
|
std::cout << "\n[in `GeV` and `c`]\n"
|
|
|
|
<< "p = " << p1 << "\n"
|
|
|
|
<< "m = " << m1 << "\n"
|
|
|
|
<< "E = " << E << "\n";
|
|
|
|
|
|
|
|
const auto p2 = p1[GeV / (si::metre / s)];
|
|
|
|
const auto m2 = m1[si::giga<si::electronvolt> / pow<2>(si::metre / s)];
|
|
|
|
const auto E2 = total_energy(p2, m2, c)[GeV];
|
|
|
|
|
|
|
|
std::cout << "\n[in `GeV`]\n"
|
|
|
|
<< "p = " << p2 << "\n"
|
|
|
|
<< "m = " << m2 << "\n"
|
|
|
|
<< "E = " << E2 << "\n";
|
|
|
|
|
|
|
|
const auto p3 = p1[kg * si::metre / s];
|
|
|
|
const auto m3 = m1[kg];
|
|
|
|
const auto E3 = total_energy(p3, m3, c)[J];
|
|
|
|
|
|
|
|
std::cout << "\n[in SI units]\n"
|
|
|
|
<< "p = " << p3 << "\n"
|
|
|
|
<< "m = " << m3 << "\n"
|
|
|
|
<< "E = " << E3 << "\n";
|
|
|
|
|
|
|
|
std::cout << "\n[converted from SI units back to GeV]\n"
|
2023-02-03 11:08:13 +01:00
|
|
|
<< "E = " << value_cast<GeV>(E3) << "\n";
|
2022-12-19 20:44:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void natural_example()
|
|
|
|
{
|
2022-12-29 20:18:48 +01:00
|
|
|
using namespace mp_units::natural;
|
|
|
|
using namespace mp_units::natural::unit_symbols;
|
2022-12-19 20:44:18 +01:00
|
|
|
|
2023-02-03 16:58:33 +01:00
|
|
|
constexpr QuantityOf<isq::speed> auto c = 1. * speed_of_light_in_vacuum;
|
|
|
|
const QuantityOf<isq::momentum> auto p = 4. * momentum[GeV];
|
|
|
|
const QuantityOf<isq::mass> auto m = 3. * mass[GeV];
|
2022-12-19 20:44:18 +01:00
|
|
|
const auto E = total_energy(p, m, c);
|
|
|
|
|
|
|
|
std::cout << "\n*** Natural units (c = " << c << ") ***\n"
|
|
|
|
<< "p = " << p << "\n"
|
|
|
|
<< "m = " << m << "\n"
|
|
|
|
<< "E = " << E << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
si_example();
|
|
|
|
natural_example();
|
|
|
|
} catch (const std::exception& ex) {
|
|
|
|
std::cerr << "Unhandled std exception caught: " << ex.what() << '\n';
|
|
|
|
} catch (...) {
|
|
|
|
std::cerr << "Unhandled unknown exception caught\n";
|
|
|
|
}
|
|
|
|
}
|