volt constant

AlternateUnit const volt

The derived unit for electric potential difference, electromotive force (V).

One Volt is equal to the difference of electric potential between two points on a conducting wire carrying a constant current of one ampere when the power dissipated between the points is one watt. It is named after the Italian physicist Count Alessandro Volta (1745-1827).

Implementation

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