001/**
002 * Unit-API - Units of Measurement API for Java
003 * Copyright (c) 2014 Jean-Marie Dautelle, Werner Keil, V2COM
004 * All rights reserved.
005 *
006 * See LICENSE.txt for details.
007 */
008package javax.measure.quantity;
009
010import javax.measure.Quantity;
011
012/**
013 * Rate of change of angular displacement with respect to time.
014 * The system unit for this quantity is "rad/s" (radian per second).
015 *
016 * <p><cite>Angular speed</cite> is a scalar value, while <cite>angular velocity</cite> is a
017 * pseudo-vector. The angular speed is the magnitude of the angular velocity pseudo-vector,
018 * or the components of the angular velocity pseudo-vector.</p>
019 *
020 * @author <a href="mailto:[email protected]">Jean-Marie Dautelle</a>
021 * @author <a href="mailto:[email protected]">Werner Keil</a>
022 * @version 1.2
023 *
024 * @see Angle
025 * @see Time
026 * @see AngularAcceleration
027 * @see Speed
028 * @see <a href="http://en.wikipedia.org/wiki/Angular_speed">Wikipedia: Angular Speed</a>
029 */
030public interface AngularSpeed extends Quantity<AngularSpeed> {
031}