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/** 014 * Rate of change of angular velocity with respect to time. 015 * The system unit for this quantity is "rad/s�" (radian per square second). 016 * 017 * @author <a href="mailto:[email protected]">Jean-Marie Dautelle</a> 018 * @version 1.1 019 * 020 * @see Angle 021 * @see AngularSpeed 022 * @see Time 023 * @see Acceleration 024 */ 025public interface AngularAcceleration extends Quantity<AngularAcceleration> { 026}