Hello guys, I am a French mid pack triathlete passionate on sports physiology and training. I am also a MD.
I am curious to implement W’ monitoring during my HIIT sessions. Would you be kind enough to tell me if it’s useful ? Maybe to adjust dynamically intervals like Xert does ? Where should I start my reading then ?
I have seen apps on the Connect IQ store since I use Garmin devices and I have seen that there are 2 différents methods to compute the W’ (integral and differential), what is the method used in intervals.icu ?
I guess that when we reach negative numbers it’s time to think that CP and W’ are not correct and need adjustments
Thank you, I think I get these basics, and I learn that Pr Skiba works with Pr Andrew Jones, neat !
Now I guess it’s more useful in a race situation than during training, because if you have got a power based goal, you’re not gonna modulate your intensity or duration according to W’
I mostly just like to look at it. Sometimes on a tough group ride I might do only 300w avg for 20m and get dropped but W’bal was nuked due to all the surges which kinda makes sense.
W’bal is calculated in Javascript in Intervals.icu:
function computeWPrimeBal(streamsByType, activity) {
let wPrime = activity.icu_w_prime
let cp = activity.icu_ftp
if (!wPrime || !cp) return []
let time = streamsByType.time.data
let data = streamsByType.watts.data
if (!time || !data) return null
if (time.length === 0 || data.length === 0) return []
data = data.slice()
let wb = wPrime
let pt = 0
for (let i = 0; i < data.length; i++) {
let t = time[i]
let secs = t - pt
let deltaW = cp - data[i]
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
}
return data
}
think of it as your gas tank , the lower it gets the more energy was used for an intense effort it’s also good to see if your nutrition plan is good because in racing you often go very deep for long periods and if you keep fueling correctly you wont bonk once W’ gets lower it’s an very useful feature to see how hard the race was and ect …
You need to enter your W’ on the activity and in /settings for future activities. You can get this from the /power page. The best estimate is from the Mortons 3P model but then you need good inputs (5s, 3m and 12m max power all done recently).
Hmmm. I used Wbal quite a bit in GC, but the implementation seems different here. In general, my Wbal decreases more strongly in GC than here. GC says that my Wbal is 20000, intervals.ice reports about 14100, so the difference is not a smaller Wbal in GC. For example, I had a ride this week in which GC reported a minimum Wbal of about 1/2 my max Wbal. But intervals.icu reported (well, the graph is a little small, so…) only about a 10% reduction (max) in Wbal. Happy to send fines/screenshots if helpful…
That would be helpful. I have only tested this on my own data and not against GC. The running down part is fairly simple. Each second above CP/FTP reduces the reserve by the number of watts above CP.
Your FTP on that ride is 186 vis 175 CP on GC. If you change the FTP to 175 then the plot is very similar to GC. A ride with a max effort that gives you a new FTP should run your W’bal down to zero on that effort. I found one of yours:
If you change your FTP on that to the estimated value your W’bal goes almost to zero which is what you would expect. The other side of this is the recovery which might be different and a “down to zero” ride will help show that. So if you could get a chart for that one from GC it would be helpful.
I think your FTP is maybe a couple of watts high. Those efforts were approx 25kJ above FTP. The default FTP estimation used by Intervals.icu uses standard curves so assumes standard W’. Yours is probably higher as your 1m power is very good.
If you can do max 3m effort to go with your 5s and 16m then you can get a likely better estimate. Change to “Mortons 3P” on the power page. If you don’t have the right inputs you won’t get anything out of that.