newton constant

AlternateUnit const newton

The derived unit for force (N).

One newton is the force required to give a mass of 1 kilogram an Force of 1 metre per second per second. It is named after the English mathematician and physicist Sir Isaac Newton (1642-1727).

Implementation

static const AlternateUnit newton = AlternateUnit(
    'N',
    ProductUnit._([
      RationalPower(metre),
      RationalPower(kilogram),
      RationalPower(second, RationalNumber._(-2))
    ]));