getSpeedOfSound method

double getSpeedOfSound({
  1. SpeedUnit unitSpeedOutput = SpeedUnit.kts,
})

Get speed of sound as this atmosphere point; unit defaults to knots, but can be changed using unitSpeedOutput.

Implementation

double getSpeedOfSound({SpeedUnit unitSpeedOutput = SpeedUnit.kts}) =>
    _speedOfSound(hp, _dISA,
        unitSpeedOutput: unitSpeedOutput,
        unitAltitude: unitAltitude,
        unitTemperature: unitTemperature);