Hi,Are the Coggan metrics supposed to work for running? I use a Stryd power meter but any of the charts which display a Coggan metric does not display anything for that curve. I assumed that they should show up since under the Athlete settings, the Run Power zones does does have a setting for "Use FTP for Coggan metrics".
Another issue I have which may well be related to the above (and how GC treats run power), on the Trends/Library/CP History chart, there should be curves for CP (Ext), Critical Power, W' (Ext) and p-Max (Ext) - the only curve I see is Critical Power. My normal CP chart under Activities shows correctly. Is there somewhere I would set the parameters for these CP calcs like in the normal CP charts?
If you really want TSS for running it can be easily computed using a formula s.t. 100*Duration*IF^2 or a custom metric using the same formula as value and isRun<>0 as filter or relevant
Hay,i would love, if you would be able to add those metrics for running power... To be one more guy who needs it. Would be really great to avoid paying Trainingpeaks... I want to use CTL for the intire triathlon Training... This is only possible (at least for me) with TSS numbers etc.
{
# calculate metric value
value { if (isSwim) 100*(Duration/3600)*(Average_Speed/config(SCV))^3; # http://home.trainingpeaks.com/blog/article/calculating-swimming-tss-score
else if (isRun) 100*(Duration/3600)*IF^2;
else TSS; # TSS for cycling is a builtin metric
}
}