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 diffusion of momentum. 
016 * The system unit for this quantity is "m²/s".
017 * 
018 * @author  <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
019 * @version 3.0, March 2, 2006
020 * @see <a href="http://en.wikipedia.org/wiki/Viscosity">
021 *      Wikipedia: Viscosity</a>
022 */
023public interface KinematicViscosity extends Quantity {
024
025    /**
026     * Holds the SI unit (Système International d'Unités) for this quantity.
027     */
028    public final static Unit<KinematicViscosity> UNIT 
029         = new ProductUnit<KinematicViscosity>(SI.METRE.pow(2).divide(SI.SECOND));
030
031}