KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > measure > quantities > KinematicViscosity


1 /*
2  * JScience - Java(TM) Tools and Libraries for the Advancement of Sciences.
3  * Copyright (C) 2006 - JScience (http://jscience.org/)
4  * All rights reserved.
5  *
6  * Permission to use, copy, modify, and distribute this software is
7  * freely granted, provided that this notice is preserved.
8  */

9 package javax.measure.quantities;
10 import javax.measure.units.ProductUnit;
11 import javax.measure.units.SI;
12 import javax.measure.units.Unit;
13
14 /**
15  * This interface represents the diffusion of momentum.
16  * The system unit for this quantity is "m²/s".
17  *
18  * @author <a HREF="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
19  * @version 3.0, March 2, 2006
20  * @see <a HREF="http://en.wikipedia.org/wiki/Viscosity">
21  * Wikipedia: Viscosity</a>
22  */

23 public interface KinematicViscosity extends Quantity<KinematicViscosity> {
24
25     /**
26      * Holds the SI unit (Système International d'Unités) for this quantity.
27      */

28     public final static Unit<KinematicViscosity> UNIT
29          = new ProductUnit<KinematicViscosity>(SI.METER.pow(2).divide(SI.SECOND));
30
31 }
Popular Tags