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 si.uom.quantity;
009
010import javax.measure.Quantity;
011
012
013/**
014 * Diffusion of momentum.
015 * The system unit for this quantity is "m²/s".
016 *
017 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
018 * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
019 * @version 3.2.1
020 *
021 * @see DynamicViscosity
022 * @see <a href="http://en.wikipedia.org/wiki/Viscosity">Wikipedia: Viscosity</a>
023 */
024public interface KinematicViscosity extends Quantity<KinematicViscosity> {
025}