pascal constant

AlternateUnit const pascal

The derived unit for pressure, stress (Pa).

One pascal is equal to one newton per square meter. It is named after the French philosopher and mathematician Blaise Pascal (1623-1662).

Implementation

static const AlternateUnit pascal = AlternateUnit(
    'Pa',
    ProductUnit._([
      RationalPower<Unit>(newton),
      RationalPower<Unit>(metre, RationalNumber._(-2))
    ]));