\( \def\bold#1{\bf #1} \newcommand{\d}{\mathrm{d}} \) BTP: Manual and Source Code Documentation

Power Uphill

bike mass [kg]
body mass [kg]
altitude gain [m]
climb length [km]
gradient [%]
time [s]
speed [km/h]
power [W]
power/mass [W/kg]
climbrate [m/min]

average power on climb stage

BTP  3.0
Routing/ClimbAnalysis/PowerCalculation
fibunacci.cpp
1 #include "fibunacci.h"
2 
3 template<> ele<STRONGfib>::ele(float d){
4  data = new STRONGfib;
5  data->d = d;
6  this->d = &(data->d);
7 }
8 template<> ele<STRONGPlusfib>::ele(float d){
9  data = new STRONGPlusfib;
10  data->d = d;
11  this->d = &(data->d);
12 }
13 template<> ele<STRONGClimbfib>::ele(float d){
14  data = new STRONGClimbfib;
15  data->d = d;
16  this->d = &(data->d);
17 }
18 template<> ele<CAfib>::ele(float d){
19  data = new CAfib;
20  data->h = d;
21  this->d = &(data->h);
22 }
23 
FibunacciHeap element to store STRONG data with climb restrictions.
Definition: DataTyps.h:270
FibunacciHeap element to store STRONG data.
Definition: DataTyps.h:261
FibunacciHeap element to store STRONG data with climb analysis.
Definition: DataTyps.h:280
Definition: fibunacci.h:9