@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
14 lines (12 loc) • 384 B
JavaScript
import { NamedUnit } from "../../NamedUnit.js";
import { UnitMatrix } from "../../UnitMatrix.js";
/**
* SI derived unit of electric inductance. 1 H = 1 Wb / A = 1 kg·m^2 / (s^2·A^2).
* @type {NamedUnit}
*/
export const HENRY = new NamedUnit(
'Henry',
'H',
'SI derived unit of electric inductance. 1 H = 1 Wb / A.',
new UnitMatrix().set(2, 1, -2, -2, 0, 0, 0)
);