Calculate Fatigue and From based on eFTP?

Can intervals do the math of my fatigue and form based on my eFTP instead of my stated FTP?

It occurred to me last night that my FTP to start the season might not be what it left off at last October but im also not going to take an ftp test every week.

You probably can do that yourself with a custom field which overwrites original load
See there for more details

1 Like

@R2Tom,

I think the point is that those should automatically be calculated based on eFTP instead of FTP (as an option, not for everyone of course). It’s similar to the request from another thread (“use eFTP as FTP by default”).
This could be solved with a script but I can’t find how to access eFTP for a given day from the API. Are you aware how to do it by any chance?

The eFTP is

activity.icu_rolling_ftp

Based on that, it should be possible to implement the TSS formula with eFTP instead of FTP:

{
eFTPLoad = (activity.moving_time * activity.icu_weighted_avg_watts * activity.icu_intensity) / (3600 * activity.icu_rolling_ftp);
console.log(eFTPLoad );
//activity.icu_training_load = eFTPLoad;
}

Uncomment the last line to overwrite the Load Value.

1 Like

For me it doesn’t work.
activity.icu_rolling_ftp

shows ftp I’ve manually set, not eftp calculated from the power curve.

In the power curve you find the highest value for this season.

It is the value from the fitness chart from the date of that activity.
image
image

It will slightly decrease with time and doing less than before, so I think that was the intention to use this value, as it would reflect the FTP value better as the “old” FTP value from summer.

Edit: If you want to get your season eFTP value, that is probably only possible with analyzing all activities of the season and getting the highest rolling_ftp value from these. This is not possible inside of an activity, so you must use the external API and write a script externally.

1 Like

Ok, thank you. I’ve assumed eFTP is something calculated from the power curve (either all-time or recent X days).

It will slightly decrease with time and doing less than before, so I think that was the intention to use this value, as it would reflect the FTP value better as the “old” FTP value from summer.

Thanks. I’ve notice it on my gf’s account. She is fighting a small injury and rides less so the value is 2W smaller than the one she got from the 25 minutes effort around 2 weeks ago. This smaller value was the same as the one I’ve set FTP on her account hence my confusion.

Do we know what algorithm is used for eFTP decreasing over time? It seems to work reasonably well but it would be nice to know how it works exactly.

I have to correct myself here a bit. On the power page, of course, the value is determined using the selected power curve. I assumed the season curve, which is also the maximum value of the season during an activity. If it is a recent best value, it will be the same as the best rolling value of the season.

I don’t know the exact formula. All I know is that it decreases with reduced training load.

1 Like