// 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 "test_tools.h" #include #include #include #include #include namespace { using namespace units; using namespace units::physical::si; // power spectral density struct sq_volt_per_hertz : unit {}; struct dim_power_spectral_density : derived_dimension, units::exponent> {}; template U, QuantityValue Rep = double> using power_spectral_density = quantity; // amplitude spectral density struct volt_per_sqrt_hertz : unit {}; struct dim_amplitude_spectral_density : derived_dimension, units::exponent> {}; template U, QuantityValue Rep = double> using amplitude_spectral_density = quantity; } namespace { static_assert(compare, dim_amplitude_spectral_density>); static_assert(compare, dim_power_spectral_density>); static_assert(compare(amplitude_spectral_density(4))), decltype(power_spectral_density(16))>); static_assert(compare(16))), decltype(amplitude_spectral_density(4))>); } namespace { struct kilogram_per_second : unit {}; struct dim_mass_rate : derived_dimension, units::exponent> {}; struct kilogram_per_hour : deduced_unit {}; constexpr auto a = 1_q_kg / 1_q_h; }