You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I always had the feeling that jumps between weights are irregular. And now I can put a finger on it. After deloading I have noticed that AMRAP set for TM 295 and TM 300 is the same - 285. But this is incorrect:
TM 295 * .95 = 280.25 — Should be AMRAP 280 TM 300 * .95 = 285 — Correct
I came to the suggestion that you are using ceil instead of floor when rounding. There is also a related issue about rounding to 5lbs #37
Here is my attempt at fixing it, the calculations are done in JavaScript so you can paste the code in your browser console:
What is your smallest weight plate? The app takes the smallest weight plate into account in order to calculate weights which are possible to load with a 20 kg bar and with plates as low as your smallest plate.
I always had the feeling that jumps between weights are irregular. And now I can put a finger on it. After deloading I have noticed that AMRAP set for
TM 295
andTM 300
is the same -285
. But this is incorrect:TM 295
*.95
=280.25
— Should beAMRAP 280
TM 300
*.95
=285
— CorrectI came to the suggestion that you are using
ceil
instead offloor
when rounding. There is also a related issue about rounding to 5lbs #37Here is my attempt at fixing it, the calculations are done in JavaScript so you can paste the code in your browser console:
Full table from
TM 225
toTM 315
The text was updated successfully, but these errors were encountered: