forked from dhague/vpower
-
Notifications
You must be signed in to change notification settings - Fork 9
/
GenericMagneticPowerCalculator.py
27 lines (22 loc) · 1.03 KB
/
GenericMagneticPowerCalculator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from AbstractPowerCalculator import AbstractPowerCalculator
from functions import interp
'''
Generic magnetic trainer power calculator.
'''
class GenericMagneticPowerCalculator(AbstractPowerCalculator):
def __init__(self):
super(GenericMagneticPowerCalculator, self).__init__()
self.wheel_circumference = 2.105 # default value - can be overridden in config.py
# Data from Generic Magnetic (medium resistance):
# http://www.powercurvesensor.com/cycling-trainer-power-curves/
# speed values
xp = [0.0, 5.0, 10.0, 15.0, 20.0, 25.0, 30.0, 35.0, 40.0, 45.0, 50.0, 55.0, 60.0]
# power values
yp = [0.0, 30.0, 60.0, 90.0, 125.0, 160.0, 200.0, 230.0, 280.0, 325.0, 375.0, 430.0, 490.0]
def power_from_speed(self, revs_per_sec):
kms_per_rev = self.wheel_circumference / 1000.0
speed = revs_per_sec * 3600 * kms_per_rev
power = int(interp(self.xp, self.yp, speed))
return power
def set_wheel_circumference(self, circumference):
self.wheel_circumference = circumference