001/* 002 * JScience - Java(TM) Tools and Libraries for the Advancement of Sciences. 003 * Copyright (C) 2006 - JScience (http://jscience.org/) 004 * All rights reserved. 005 * 006 * Permission to use, copy, modify, and distribute this software is 007 * freely granted, provided that this notice is preserved. 008 */ 009package javax.measure.quantity; 010import javax.measure.unit.ProductUnit; 011import javax.measure.unit.SI; 012import javax.measure.unit.Unit; 013 014/** 015 * This interface represents the rate of change of angular velocity with respect 016 * to time. The system unit for this quantity is "rad/s²" (radian per 017 * square second). 018 * 019 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a> 020 * @version 1.0, January 14, 2006 021 */ 022public interface AngularAcceleration extends Quantity { 023 024 /** 025 * Holds the SI unit (Système International d'Unités) for this quantity. 026 */ 027 public final static Unit<AngularAcceleration> UNIT 028 = new ProductUnit<AngularAcceleration>(SI.RADIAN.divide(SI.SECOND.pow(2))); 029 030}