ohm constant

AlternateUnit const ohm

The derived unit for electric resistance (Ω or Ohm).

One Ohm is equal to the resistance of a conductor in which a current of one ampere is produced by a potential of one volt across its terminals. It is named after the German physicist Georg Simon Ohm (1789-1854).

Implementation

static const AlternateUnit ohm = AlternateUnit(
    'Ω',
    ProductUnit._([
      RationalPower<Unit>(volt),
      RationalPower<Unit>(ampere, RationalNumber._(-1))
    ]));