@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
17 lines (15 loc) • 468 B
JavaScript
import { NamedUnit } from "../../NamedUnit.js";
import { UnitMatrix } from "../../UnitMatrix.js";
/**
* SI derived unit of absorbed ionising-radiation dose. 1 Gy = 1 J / kg = 1 m^2 / s^2.
*
* Note: dimensionally indistinguishable from {@link SIEVERT}.
*
* @type {NamedUnit}
*/
export const GRAY = new NamedUnit(
'Gray',
'Gy',
'SI derived unit of absorbed ionising-radiation dose. 1 Gy = 1 J / kg.',
new UnitMatrix().set(2, 0, -2, 0, 0, 0, 0)
);