// 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. #include #include // IWYU pragma: keep #include #include #include #include // IWYU pragma: keep #include #include #include #include #include // IWYU pragma: keep namespace { using namespace units::isq; static_assert(units::detail::quantity_ratio> == units::ratio(1)); static_assert(units::detail::quantity_ratio> == units::ratio(1, 100)); static_assert(units::detail::quantity_ratio> == units::ratio(1)); static_assert(units::detail::quantity_ratio> == units::ratio(1, 100)); static_assert(units::detail::quantity_ratio> == units::ratio(1000)); // defined in terms of kilogram that are 1000 * gram static_assert(units::detail::quantity_ratio> == units::ratio(1, 100)); // defined in terms of gram so only centimetre ratio counts here static_assert(si::cgs::length(100) == si::length(1)); static_assert(si::cgs::mass(1'000) == si::mass(1)); static_assert(si::cgs::time(1) == si::time(1)); static_assert(si::cgs::speed(100) == si::speed(1)); static_assert(si::cgs::area(10000) == si::area(1)); static_assert(si::cgs::acceleration(100) == si::acceleration(1)); static_assert(si::cgs::force(100'000) == si::force(1)); static_assert(si::cgs::energy(10'000'000) == si::energy(1)); static_assert(si::cgs::power(10'000'000) == si::power(1)); static_assert(si::cgs::pressure(10) == si::pressure(1)); namespace si_test { using namespace units::isq::si::literals; static_assert(si::cgs::length(100) == 1_q_m); static_assert(si::cgs::mass(1'000) == 1_q_kg); static_assert(si::cgs::time(1) == 1_q_s); static_assert(si::cgs::speed(100) == 1_q_m_per_s); static_assert(si::cgs::acceleration(100) == 1_q_m_per_s2); static_assert(si::cgs::force(100'000) == 1_q_N); static_assert(si::cgs::energy(10'000'000) == 1_q_J); static_assert(si::cgs::power(10'000'000) == 1_q_W); static_assert(si::cgs::pressure(10) == 1_q_Pa); } namespace cgs_test { using namespace units::isq::si::cgs::literals; static_assert(100_q_cm == si::length(1)); static_assert(1'000_q_g == si::mass(1)); static_assert(1_q_s == si::time(1)); static_assert(100_q_cm_per_s == si::speed(1)); static_assert(100_q_Gal == si::acceleration(1)); static_assert(100'000_q_dyn == si::force(1)); static_assert(10'000'000_q_erg == si::energy(1)); static_assert(10'000'000_q_erg_per_s == si::power(1)); static_assert(10_q_Ba == si::pressure(1)); } namespace both_test { using namespace units::isq::si::literals; using namespace units::isq::si::cgs::literals; // static_assert(100_q_cm == 1_q_m); // ambiguous // static_assert(1'000_q_g == 1_q_kg); // ambiguous static_assert(1_q_s == 1_q_s); static_assert(100_q_cm_per_s == 1_q_m_per_s); static_assert(100_q_Gal == 1_q_m_per_s2); static_assert(100'000_q_dyn == 1_q_N); static_assert(10'000'000_q_erg == 1_q_J); static_assert(10'000'000_q_erg_per_s == 1_q_W); static_assert(10_q_Ba == quantity_cast(1_q_Pa)); } namespace cgs_test { // addition // static_assert(100_q_cm + si::length(1) == si::length(2)); // should not compile (different dimensions) // static_assert(si::length(1) + 100_q_cm == si::length(2)); // should not compile (different dimensions) static_assert(quantity_cast>(100_q_cm) + si::length(1) == si::length(2)); static_assert(si::length(1) + quantity_cast>(100_q_cm) == si::length(2)); static_assert(100_q_cm + quantity_cast>(si::length(1)) == 200_q_cm); static_assert(quantity_cast>(si::length(1)) + 100_q_cm == 200_q_cm); // substraction // static_assert(500_q_cm - si::length(1) == si::length(4)); // should not compile (different dimensions) // static_assert(si::length(5) - 100_q_cm == si::length(4)); // should not compile (different dimensions) static_assert(quantity_cast>(500_q_cm) - si::length(1) == si::length(4)); static_assert(si::length(5) - quantity_cast>(100_q_cm) == si::length(4)); static_assert(500_q_cm - quantity_cast>(si::length(1)) == 400_q_cm); static_assert(quantity_cast>(si::length(5)) - 100_q_cm == 400_q_cm); // multiplication // static_assert(200_q_cm * si::length(2) == si::area(4)); // should not compile (unknown dimension) static_assert(quantity_cast(200._q_cm) * si::length(2) == si::area(4)); static_assert(200._q_cm * quantity_cast(si::length(2)) == 40'000_q_cm2); // TODO Add support for quantity_cast on an unknown_dimension? // static_assert(quantity_cast>(200_q_cm * si::length(2)) == si::area(4)); // static_assert(quantity_cast(200_q_cm * si::length(2)) == si::area(4)); // static_assert(quantity_cast>(200_q_cm * si::length(2)) == 40'000_q_cm2); // static_assert(quantity_cast(200_q_cm * si::length(2)) == 40'000_q_cm2); // division // static_assert(si::area(4) / 200_q_cm == si::length(2)); // should not compile (unknown dimension) static_assert(si::area(4) / quantity_cast>(200_q_cm) == si::length(2)); static_assert(quantity_cast>(si::area(4)) / 200._q_cm == 200_q_cm); } }