WPILibC++ 2024.3.2
angular_velocity.h
Go to the documentation of this file.
1// Copyright (c) FIRST and other WPILib contributors.
2// Open Source Software; you can modify and/or share it under the terms of
3// the WPILib BSD license file in the root directory of this project.
4
5// Copyright (c) 2016 Nic Holthaus
6//
7// The MIT License (MIT)
8//
9// Permission is hereby granted, free of charge, to any person obtaining a copy
10// of this software and associated documentation files (the "Software"), to deal
11// in the Software without restriction, including without limitation the rights
12// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13// copies of the Software, and to permit persons to whom the Software is
14// furnished to do so, subject to the following conditions:
15//
16// The above copyright notice and this permission notice shall be included in
17// all copies or substantial portions of the Software.
18//
19// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25// SOFTWARE.
26
27#pragma once
28
29#include "units/angle.h"
30#include "units/base.h"
31#include "units/time.h"
32
33namespace units {
34/**
35 * @namespace units::angular_velocity
36 * @brief namespace for unit types and containers representing angular velocity
37 * values
38 * @details The SI unit for angular velocity is `radians_per_second`, and the
39 * corresponding `base_unit` category is`angular_velocity_unit`.
40 * @anchor angularVelocityContainers
41 * @sa See unit_t for more information on unit type containers.
42 */
43#if !defined(DISABLE_PREDEFINED_UNITS) || \
44 defined(ENABLE_PREDEFINED_ANGULAR_VELOCITY_UNITS)
45UNIT_ADD(angular_velocity, radians_per_second, radians_per_second, rad_per_s,
48 compound_unit<angle::degrees, inverse<time::seconds>>)
49UNIT_ADD(angular_velocity, turns_per_second, turns_per_second, tps,
50 compound_unit<angle::turns, inverse<time::seconds>>)
52 unit<std::ratio<2, 60>, radians_per_second, std::ratio<1>>)
53UNIT_ADD(angular_velocity, milliarcseconds_per_year, milliarcseconds_per_year,
54 mas_per_yr, compound_unit<angle::milliarcseconds, inverse<time::year>>)
55
56UNIT_ADD_CATEGORY_TRAIT(angular_velocity)
57#endif
58
59using namespace angular_velocity;
60} // namespace units
#define UNIT_ADD_CATEGORY_TRAIT(unitCategory)
Macro to create the is_category_unit type trait.
Definition: base.h:369
typename units::detail::inverse_impl< U >::type inverse
represents the inverse unit type of class U.
Definition: base.h:1134
typename units::detail::compound_impl< U, Us... >::type compound_unit
Represents a unit type made up from other units.
Definition: base.h:1434
Definition: array.h:89
Unit Conversion Library namespace.
Definition: data.h:31
squared< angle::degrees > UNIT_ADD(solid_angle, spat, spats, sp, unit< std::ratio< 4 >, steradians, std::ratio< 1 > >) using namespace solid_angle
degrees_per_second
Definition: angular_velocity.h:47
degrees
Definition: angle.h:43
compound_unit< angle::degrees, inverse< time::seconds > > rpm
Definition: angular_velocity.h:51
compound_unit< angle::degrees, inverse< time::seconds > > revolutions_per_minute
Definition: angular_velocity.h:51
deg_per_s
Definition: angular_velocity.h:47
Class representing SI base unit types.
Definition: base.h:757
Type representing an arbitrary unit.
Definition: base.h:884