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