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 effective (or "equivalent") dose of radiation
16: * received by a human or some other living organism. The system unit for
17: * this quantity is "Sv" (Sievert).
18: *
19: * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
20: * @version 1.0, January 14, 2006
21: */
22: public interface RadiationDoseEffective extends Quantity {
23:
24: /**
25: * Holds the SI unit (Système International d'Unités) for this quantity.
26: */
27: public final static Unit<RadiationDoseEffective> UNIT = SI.SIEVERT;
28:
29: }
|