henry constant

AlternateUnit const henry

The derived unit for inductance (H).

One Henry is equal to the inductance for which an induced electromotive force of one volt is produced when the current is varied at the rate of one ampere per second. It is named after the American physicist Joseph Henry (1791-1878).

Implementation

static const AlternateUnit henry = AlternateUnit(
    'H',
    ProductUnit._([
      RationalPower<Unit>(weber),
      RationalPower<Unit>(ampere, RationalNumber._(-1))
    ]));