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 javax.measure.quantity; 009 010import javax.measure.Quantity; 011 012 013/** 014 * Quantity of subatomic particles or electromagnetic waves that are energetic 015 * enough to detach electrons from atoms or molecules, ionizing them. 016 * The system unit for this quantity is "C/kg ("coulomb per kilogram). 017 * 018 * @author <a href="mailto:[email protected]">Jean-Marie Dautelle</a> 019 * @author <a href="mailto:[email protected]">Werner Keil</a> 020 * @version 1.2.1 021 * 022 * @see <a href="http://en.wikipedia.org/wiki/Ionizing_radiation">Wikipedia: Ionizing Radiation</a> 023 */ 024public interface IonizingRadiation extends Quantity<IonizingRadiation> { 025}