becquerel constant

AlternateUnit const becquerel

The derived unit for activity of a radionuclide (Bq).

One becquerel is the radiation caused by one disintegration per second. It is named after the French physicist, Antoine-Henri Becquerel (1852-1908).

Implementation

static const AlternateUnit becquerel = AlternateUnit(
    'Bq',
    ProductUnit._([
      RationalPower<Unit>(Unit.one),
      RationalPower<Unit>(second, RationalNumber._(-1))
    ]));