forked from dhague/vpower
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCycleOpsFluid2PowerCalculator.py
27 lines (22 loc) · 1.01 KB
/
CycleOpsFluid2PowerCalculator.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
'''
CycleOps Fluid2 power calculator.
'''
class CycleOpsFluid2PowerCalculator(AbstractPowerCalculator):
def __init__(self):
super(CycleOpsFluid2PowerCalculator, self).__init__()
self.wheel_circumference = 2.105 # default value - can be overridden in config.py
# Data from the diagram of CycleOps Fluid2:
# http://thebikegeek.blogspot.com/2009/12/while-we-wait-for-better-and-better.html
# 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]
# power values
yp = [0.0, 28.0, 58.0, 92.0, 132.0, 179.0, 237.0, 307.0, 391.0, 492.0, 611.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