metresPerSecond constant

Unit const metresPerSecond

/////////////////////////// /////////////////////////// The metric unit for velocity quantities (m/s).

Implementation

// SI DERIVED PRODUCT UNITS //
//////////////////////////////

/// The metric unit for velocity quantities (`m/s`).
static const Unit metresPerSecond = ProductUnit._([
  RationalPower<Unit>(metre),
  RationalPower<Unit>(second, RationalNumber._(-1))
]);