computeAvgPower
computeAvgPower(
pace500Seconds):number
Defined in: console-sdk/src/units/index.ts:236
Rower/skier average power (whole watts) from a 500m pace, using the firmware
power curve 2.8 · (500 / pace500)³. The result is floored to a whole watt to
match the console’s uint16_t display.
Parameters
Section titled “Parameters”pace500Seconds
Section titled “pace500Seconds”number
Pace as seconds to cover 500m.
Returns
Section titled “Returns”number
Average power in watts (floored), or 0 for a zero pace.
Example
Section titled “Example”computeAvgPower(120); // 202 (2:00/500m → floor(2.8·(500/120)³))