UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

17 lines (15 loc) 436 B
import { NamedUnit } from "../../NamedUnit.js"; import { UnitMatrix } from "../../UnitMatrix.js"; /** * SI derived unit of radioactive decay rate. 1 Bq = 1 / s. * * Note: dimensionally indistinguishable from {@link HERTZ}. * * @type {NamedUnit} */ export const BECQUEREL = new NamedUnit( 'Becquerel', 'Bq', 'SI derived unit of radioactive decay rate. 1 Bq = 1 / s.', new UnitMatrix().set(0, 0, -1, 0, 0, 0, 0) );