01: /*
02: * JScience - Java(TM) Tools and Libraries for the Advancement of Sciences.
03: * Copyright (C) 2006 - JScience (http://jscience.org/)
04: * All rights reserved.
05: *
06: * Permission to use, copy, modify, and distribute this software is
07: * freely granted, provided that this notice is preserved.
08: */
09: package javax.measure.quantity;
10:
11: import javax.measure.unit.SI;
12: import javax.measure.unit.Unit;
13:
14: /**
15: * This interface represents the movement of mass per time.
16: * The system unit for this quantity is "kg/s" (kilogram per second).
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/Mass_flow_rate">
21: * Wikipedia: Mass Flow Rate</a>
22: */
23: public interface MassFlowRate extends Quantity {
24:
25: /**
26: * Holds the SI unit (Système International d'Unités) for this quantity.
27: */
28: @SuppressWarnings("unchecked")
29: public final static Unit<MassFlowRate> UNIT = (Unit<MassFlowRate>) SI.KILOGRAM
30: .divide(SI.SECOND);
31: }
|