forked from mpusz/mp-units
54 lines
1.8 KiB
C++
54 lines
1.8 KiB
C++
// 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 <units/physical/si/derived/speed.h>
|
|
#include <units/physical/si/international/derived/speed.h>
|
|
#include <utility>
|
|
|
|
namespace {
|
|
|
|
using namespace units;
|
|
using namespace units::physical::si;
|
|
using namespace units::physical::si::international;
|
|
|
|
/* ************** BASE DIMENSIONS **************** */
|
|
|
|
// length
|
|
|
|
static_assert(1_q_yd == 0.9144_q_m);
|
|
static_assert(1_q_yd == 3_q_ft);
|
|
static_assert(1_q_ft == 12_q_in);
|
|
static_assert(1_q_mi == 1760_q_yd);
|
|
|
|
static_assert(5_q_in + 8_q_cm == 207_q_mm);
|
|
|
|
|
|
/* ************** DERIVED DIMENSIONS IN TERMS OF BASE UNITS **************** */
|
|
|
|
// speed
|
|
|
|
static_assert(10.0_q_mi / 2_q_h == 5_q_mi_per_h);
|
|
|
|
static_assert(mile_per_hour::symbol == "mi/h");
|
|
|
|
} // namespace
|