Now that I have running power (Garmin variant), I am trying to create some workouts based on power. I see very interesting the predicted W’bal depletion that is shown in the editor:
I can see that the short recovery will stress me on the following intervals because it is not a full recovery, and I will finish with 0 at the final one. That’s fine.
However, I do not understand why if I change the number of repetitions (up to 10, just to try), I can go more further than the 3 previous repetition, and finish with 0 at the end of all the intervals:
Check the values, it seems you are going to negative values and the scale for wbal in both charts is not the same, being the minimum the lowest wbal value achieved in each workout
Ouch… I see. So, several mistakes. I did not noticed the 0 line.
It seems that my pace zones do not correspond to power zones. I’ve done 2km at Z6 pace and 0.5km Z2 pace recovery on the past (last month) and I did not die. But reviewing the power zones, that intervals were on Z5 power, not Z6.
However, even changing the interval to Z5 power, I am going to negative:
I have never used it for running but for cycling, going negative means that either W’ is set too low or FTP (or to be precise CP) is set too low or both.
Don’t expect to get spot-on results, W’ is only a very rough estimation of what you can do above FTP (CP).
This is the code that calculates W’ in Javascript (data = watts stream):
for (let i = 0; i < data.length; i++) {
let t = time[i]
let secs = t - pt
let deltaW = secs < maxGap ? cp - data[i] : cp // assume resting if there is a big gap
if (deltaW > 0) {
for (let j = 0; j < secs; j++) wb += deltaW * (wPrime - wb) / wPrime
} else {
wb += deltaW * secs
}
data[i] = Math.floor(wb)
pt = t
}
So the recovery for each second under CP is deltaW * (wPrime - wb) / wPrime.