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