-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchunks.json
More file actions
4430 lines (4430 loc) · 634 KB
/
chunks.json
File metadata and controls
4430 lines (4430 loc) · 634 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 0,
"text": "REVIEW\nOpen Access\nNutrient timing revisited: is there a post-exercise\nanabolic window?\nAlan Albert Aragon1 and Brad Jon Schoenfeld2*\nAbstract\nNutrient timing is a popular nutritional strategy that involves the consumption of combinations of\nnutrients–primarily protein and carbohydrate–in and around an exercise session. Some have claimed that this\napproach can produce dramatic improvements in body composition. It has even been postulated that the\ntiming of nutritional consumption may be more important than the absolute daily intake of nutrients. The\npost-exercise period is widely considered the most critical part of nutrient timing."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 1,
"text": "Theoretically, consuming the\nproper ratio of nutrients during this time not only initiates the rebuilding of damaged muscle tissue and\nrestoration of energy reserves, but it does so in a supercompensated fashion that enhances both body\ncomposition and exercise performance.Several researchers have made reference to an anabolic “window of\nopportunity” whereby a limited time exists after training to optimize training-related muscular adaptations.\nHowever, the importance - and even the existence - of a post-exercise ‘window’ can vary according to a\nnumber of factors. Not only is nutrient timing research open to question in terms of applicability, but recent\nevidence has directly challenged the classical view of the relevance of post-exercise nutritional intake with\nrespect to anabolism."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 2,
"text": "Therefore, the purpose of this paper will be twofold: 1) to review the existing literature\non the effects of nutrient timing with respect to post-exercise muscular adaptations, and; 2) to draw relevant\nconclusions that allow practical, evidence-based nutritional recommendations to be made for maximizing the\nanabolic response to exercise.\nIntroduction\nOver the past two decades, nutrient timing has been the\nsubject of numerous research studies and reviews.The\nbasis of nutrient timing involves the consumption of combi-\nnations of nutrients--primarily protein and carbohydrate--in\nand around an exercise session. The strategy is designed to\nmaximize exercise-induced muscular adaptations and facili-\ntate repair of damaged tissue [1]."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 3,
"text": "Some have claimed that\nsuch timing strategies can produce dramatic improvements\nin body composition, particularly with respect to increases\nin fat-free mass [2].It has even been postulated that the tim-\ning of nutritional consumption may be more important than\nthe absolute daily intake of nutrients [3].\nThe post-exercise period is often considered the most\ncritical part of nutrient timing. An intense resistance train-\ning workout results in the depletion of a significant propor-\ntion of stored fuels (including glycogen and amino acids) as\nwell as causing damage to muscle fibers."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 4,
"text": "Theoretically, con-\nsuming the proper ratio of nutrients during this time not\nonly initiates the rebuilding of damaged tissue and restor-\nation of energy reserves, but it does so in a supercompen-\nsated fashion that enhances both body composition and\nexercise performance.Several researchers have made refer-\nence to an “anabolic window of opportunity” whereby a\nlimited time exists after training to optimize training-\nrelated muscular adaptations [3-5].\nHowever, the importance – and even the existence –\nof a post-exercise ‘window’ can vary according to a num-\nber of factors. Not only is nutrient timing research open\nto question in terms of applicability, but recent evidence\nhas directly challenged the classical view of the relevance\nof post-exercise nutritional intake on anabolism."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 5,
"text": "There-\nfore, the purpose of this paper will be twofold: 1) to re-\nview the existing literature on the effects of nutrient\ntiming with respect to post-exercise muscular adapta-\ntions, and; 2) to draw relevant conclusions that allow\nevidence-based nutritional recommendations to be made\nfor maximizing the anabolic response to exercise.\n* Correspondence: [email protected]\n2Department of Health Science, Lehman College, Bronx, NY, USA\nFull list of author information is available at the end of the article\n© 2013 Aragon and Schoenfeld; licensee BioMed Central Ltd."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 6,
"text": "This is an Open Access article distributed under the terms of the\nCreative Commons Attribution License (http://creativecommons.org/licenses/by/2.0), which permits unrestricted use,\ndistribution, and reproduction in any medium, provided the original work is properly cited.\nAragon and Schoenfeld Journal of the International Society of Sports Nutrition 2013, 10:5\nhttp://www.jissn.com/content/10/1/5\nGlycogen repletion\nA primary goal of traditional post-workout nutrient timing\nrecommendations is to replenish glycogen stores.Glycogen\nis considered essential to optimal resistance training per-\nformance, with as much as 80% of ATP production during\nsuch training derived from glycolysis [6]."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 7,
"text": "MacDougall et al.\n[7] demonstrated that a single set of elbow flexion at 80%\nof 1 repetition maximum (RM) performed to muscular fail-\nure caused a 12% reduction in mixed-muscle glycogen con-\ncentration, while three sets at this intensity resulted in a\n24% decrease.Similarly, Robergs et al. [8] reported that 3\nsets of 12 RM performed to muscular failure resulted in a\n26.1% reduction of glycogen stores in the vastus lateralis\nwhile six sets at this intensity led to a 38% decrease, primar-\nily resulting from glycogen depletion in type II fibers com-\npared to type I fibers."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 8,
"text": "It therefore stands to reason that\ntypical high volume bodybuilding-style workouts involving\nmultiple exercises and sets for the same muscle group\nwould deplete the majority of local glycogen stores.\nIn addition, there is evidence that glycogen serves to me-\ndiate intracellular signaling.This appears to be due, at least\nin part, to its negative regulatory effects on AMP-activated\nprotein kinase (AMPK)."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 9,
"text": "Muscle anabolism and catabolism\nare regulated by a complex cascade of signaling pathways.\nSeveral pathways that have been identified as particularly\nimportant to muscle anabolism include mammalian target\nof rapamycin (mTOR), mitogen-activated protein kinase\n(MAPK), and various calcium- (Ca2+) dependent pathways.\nAMPK, on the other hand, is a cellular energy sensor that\nserves to enhance energy availability.As such, it blunts\nenergy-consuming processes including the activation of\nmTORC1 mediated by insulin and mechanical tension, as\nwell as heightening catabolic processes such as glycolysis,\nbeta-oxidation, and protein degradation [9]."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 10,
"text": "mTOR is con-\nsidered a master network in the regulation of skeletal\nmuscle growth [10,11], and its inhibition has a decidedly\nnegative effect on anabolic processes [12].Glycogen has\nbeen shown to inhibit purified AMPK in cell-free assays\n[13], and low glycogen levels are associated with an\nenhanced AMPK activity in humans in vivo [14].\nCreer et al. [15] demonstrated that changes in the phos-\nphorylation of protein kinase B (Akt) are dependent on\npre-exercise muscle glycogen content. After performing 3\nsets of 10 repetitions of knee extensions with a load equat-\ning to 70% of 1 repetition maximum, early phase post-\nexercise Akt phosphorylation was increased only in the\nglycogen-loaded muscle, with no effect seen in the\nglycogen-depleted contralateral muscle."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 11,
"text": "Glycogen inhib-\nition also has been shown to blunt S6K activation, impair\ntranslation, and reduce the amount of mRNA of genes re-\nsponsible for regulating muscle hypertrophy [16,17].In\ncontrast to these findings, a recent study by Camera et al.\n[18] found that high-intensity resistance training with low\nmuscle glycogen levels did not impair anabolic signaling\nor muscle protein synthesis (MPS) during the early (4 h)\npostexercise recovery period. The discrepancy between\nstudies is not clear at this time.\nGlycogen availability also has been shown to mediate\nmuscle protein breakdown. Lemon and Mullin [19] found\nthat nitrogen losses more than doubled following a bout\nof exercise in a glycogen-depleted versus glycogen-loaded\nstate."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 12,
"text": "Other researchers have displayed a similar inverse\nrelationship between glycogen levels and proteolysis [20].\nConsidering the totality of evidence, maintaining a high\nintramuscular glycogen content at the onset of training\nappears beneficial to desired resistance training outcomes.\nStudies show a supercompensation of glycogen stores\nwhen carbohydrate is consumed immediately post-exercise,\nand delaying consumption by just 2 hours attenuates the\nrate of muscle glycogen re-synthesis by as much as 50%\n[21].Exercise enhances insulin-stimulated glucose uptake\nfollowing a workout with a strong correlation noted be-\ntween the amount of uptake and the magnitude of glyco-\ngen utilization [22]."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 13,
"text": "This is in part due to an increase in\nthe translocation of GLUT4 during glycogen depletion\n[23,24] thereby facilitating entry of glucose into the cell.In\naddition, there is an exercise-induced increase in the activ-\nity of glycogen synthase—the principle enzyme involved in\npromoting glycogen storage [25]. The combination of these\nfactors facilitates the rapid uptake of glucose following an\nexercise bout, allowing glycogen to be replenished at an\naccelerated rate.\nThere is evidence that adding protein to a post-workout\ncarbohydrate meal can enhance glycogen re-synthesis.\nBerardi et al."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 14,
"text": "[26] demonstrated that consuming a protein-\ncarbohydrate supplement in the 2-hour period following a\n60-minute cycling bout resulted in significantly greater\nglycogen resynthesis compared to ingesting a calorie-\nequated carbohydrate solution alone.Similarly, Ivy et al.\n[27] found that consumption of a combination of protein\nand carbohydrate after a 2+ hour bout of cycling and\nsprinting increased muscle glycogen content significantly\nmore than either a carbohydrate-only supplement of\nequal carbohydrate or caloric equivalency. The synergis-\ntic effects of protein-carbohydrate have been attributed\nto a more pronounced insulin response [28], although it\nshould be noted that not all studies support these find-\nings [29]. Jentjens et al."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 15,
"text": "[30] found that given ample\ncarbohydrate dosing (1.2 g/kg/hr), the addition of a pro-\ntein and amino acid mixture (0.4 g/kg/hr) did not in-\ncrease glycogen synthesis during a 3-hour post-depletion\nrecovery period.\nDespite a sound theoretical basis, the practical signifi-\ncance of expeditiously repleting glycogen stores remains\ndubious.Without question, expediting glycogen resynth-\nesis is important for a narrow subset of endurance sports\nwhere the duration between glycogen-depleting events is\nlimited to less than approximately 8 hours [31]."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 16,
"text": "Similar\nAragon and Schoenfeld Journal of the International Society of Sports Nutrition 2013, 10:5\nPage 2 of 11\nhttp://www.jissn.com/content/10/1/5\nbenefits could potentially be obtained by those who per-\nform two-a-day split resistance training bouts (i.e.morn-\ning and evening) provided the same muscles will be\nworked during the respective sessions. However, for\ngoals that are not specifically focused on the perform-\nance of multiple exercise bouts in the same day, the ur-\ngency of glycogen resynthesis is greatly diminished.\nHigh-intensity resistance training with moderate volume\n(6-9 sets per muscle group) has only been shown to re-\nduce glycogen stores by 36-39% [8,32]."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 17,
"text": "Certain athletes\nare prone to performing significantly more volume than\nthis (i.e., competitive bodybuilders), but increased vol-\nume typically accompanies decreased frequency.For ex-\nample, training a muscle group with 16-20 sets in a\nsingle session is done roughly once per week, whereas\nroutines with 8-10 sets are done twice per week. In sce-\nnarios of higher volume and frequency of resistance\ntraining, incomplete resynthesis of pre-training glycogen\nlevels would not be a concern aside from the far-fetched\nscenario where exhaustive training bouts of the same\nmuscles occur after recovery intervals shorter than 24\nhours."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 18,
"text": "However, even in the event of complete glycogen\ndepletion, replenishment to pre-training levels occurs\nwell-within this timeframe, regardless of a significantly\ndelayed post-exercise carbohydrate intake.For example,\nParkin et al [33] compared the immediate post-exercise\ningestion of 5 high-glycemic carbohydrate meals with a\n2-hour wait before beginning the recovery feedings. No\nsignificant\nbetween-group\ndifferences\nwere\nseen\nin\nglycogen levels at 8 hours and 24 hours post-exercise. In\nfurther support of this point, Fox et al."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 19,
"text": "[34] saw no sig-\nnificant reduction in glycogen content 24 hours after de-\npletion despite adding 165 g fat collectively to the post-\nexercise recovery meals and thus removing any potential\nadvantage of high-glycemic conditions.\nProtein breakdown\nAnother purported benefit of post-workout nutrient tim-\ning is an attenuation of muscle protein breakdown.This\nis\nprimarily\nachieved\nby\nspiking\ninsulin\nlevels,\nas\nopposed to increasing amino acid availability [35,36].\nStudies show that muscle protein breakdown is only\nslightly elevated immediately post-exercise and then\nrapidly rises thereafter [36]. In the fasted state, muscle\nprotein breakdown is significantly heightened at 195\nminutes following resistance exercise, resulting in a net\nnegative protein balance [37]."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 20,
"text": "These values are increased\nas much as 50% at the 3 hour mark, and elevated prote-\nolysis can persist for up to 24 hours of the post-workout\nperiod [36].\nAlthough\ninsulin\nhas\nknown\nanabolic\nproperties\n[38,39], its primary impact post-exercise is believed to\nbe anti-catabolic [40-43].The mechanisms by which in-\nsulin reduces proteolysis are not well understood at this\ntime. It has been theorized that insulin-mediated phos-\nphorylation of PI3K/Akt inhibits transcriptional activity\nof the proteolytic Forkhead family of transcription fac-\ntors, resulting in their sequestration in the sarcoplasm\naway from their target genes [44]. Down-regulation of\nother aspects of the ubiquitin-proteasome pathway are\nalso believed to play a role in the process [45]."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 21,
"text": "Given\nthat muscle hypertrophy represents the difference be-\ntween myofibrillar protein synthesis and proteolysis, a\ndecrease in protein breakdown would conceivably en-\nhance accretion of contractile proteins and thus facilitate\ngreater hypertrophy."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 22,
"text": "Accordingly, it seems logical to\nconclude that consuming a protein-carbohydrate supple-\nment following exercise would promote the greatest re-\nduction in proteolysis since the combination of the two\nnutrients has been shown to elevate insulin levels to a\ngreater extent than carbohydrate alone [28].\nHowever, while the theoretical basis behind spiking in-\nsulin post-workout is inherently sound, it remains ques-\ntionable as to whether benefits extend into practice.\nFirst and foremost, research has consistently shown that,\nin the presence of elevated plasma amino acids, the ef-\nfect of insulin elevation on net muscle protein balance\nplateaus within a range of 15–30 mU/L [45,46]; roughly\n3–4 times normal fasting levels."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 23,
"text": "This insulinogenic effect\nis easily accomplished with typical mixed meals, consid-\nering that it takes approximately 1–2 hours for circulat-\ning substrate levels to peak, and 3–6 hours (or more) for\na complete return to basal levels depending on the size\nof a meal.For example, Capaldo et al. [47] examined\nvarious metabolic effects during a 5-hour period after\ningesting a solid meal comprised of 75 g carbohydrate\n37 g protein, and 17 g fat. This meal was able to raise\ninsulin 3 times above fasting levels within 30 minutes of\nconsumption. At the 1-hour mark, insulin was 5 times\ngreater than fasting. At the 5-hour mark, insulin was still\ndouble the fasting levels. In another example, Power\net al."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 24,
"text": "[48] showed that a 45g dose of whey protein isolate\ntakes approximately 50 minutes to cause blood amino\nacid levels to peak.Insulin concentrations peaked 40\nminutes after ingestion, and remained at elevations seen\nto maximize net muscle protein balance (15-30 mU/L,\nor 104-208 pmol/L) for approximately 2 hours. The in-\nclusion of carbohydrate to this protein dose would cause\ninsulin levels to peak higher and stay elevated even\nlonger. Therefore, the recommendation for lifters to\nspike insulin post-exercise is somewhat trivial."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 25,
"text": "The clas-\nsical post-exercise objective to quickly reverse catabolic\nprocesses to promote recovery and growth may only be\napplicable in the absence of a properly constructed pre-\nexercise meal.\nMoreover, there is evidence that the effect of protein\nbreakdown on muscle protein accretion may be over-\nstated.Glynn et al. [49] found that the post-exercise\nAragon and Schoenfeld Journal of the International Society of Sports Nutrition 2013, 10:5\nPage 3 of 11\nhttp://www.jissn.com/content/10/1/5\nanabolic response associated with combined protein and\ncarbohydrate consumption was largely due to an eleva-\ntion in muscle protein synthesis with only a minor influ-\nence from reduced muscle protein breakdown. These\nresults were seen regardless of the extent of circulating\ninsulin levels."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 26,
"text": "Thus, it remains questionable as to what,\nif any, positive effects are realized with respect to muscle\ngrowth from spiking insulin after resistance training.\nProtein synthesis\nPerhaps the most touted benefit of post-workout nutri-\nent timing is that it potentiates increases in MPS.Resist-\nance training alone has been shown to promote a\ntwofold increase in protein synthesis following exercise,\nwhich is counterbalanced by the accelerated rate of pro-\nteolysis [36]. It appears that the stimulatory effects of\nhyperaminoacidemia on muscle protein synthesis, espe-\ncially from essential amino acids, are potentiated by pre-\nvious exercise [35,50]."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 27,
"text": "There is some evidence that\ncarbohydrate has an additive effect on enhancing post-\nexercise muscle protein synthesis when combined with\namino acid ingestion [51], but others have failed to find\nsuch a benefit [52,53].\nSeveral studies have investigated whether an “anabolic\nwindow” exists in the immediate post-exercise period\nwith respect to protein synthesis.For maximizing MPS,\nthe evidence supports the superiority of post-exercise\nfree amino acids and/or protein (in various permutations\nwith or without carbohydrate) compared to solely carbo-\nhydrate or non-caloric placebo [50,51,54-59]. However,\ndespite the common recommendation to consume pro-\ntein as soon as possible post-exercise [60,61], evidence-\nbased support for this practice is currently lacking.\nLevenhagen et al."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 28,
"text": "[62] demonstrated a clear benefit to\nconsuming nutrients as soon as possible after exercise as\nopposed to delaying consumption.Employing a within-\nsubject design,10 volunteers (5 men, 5 women) con-\nsumed an oral supplement containing 10 g protein, 8 g\ncarbohydrate and 3 g fat either immediately following or\nthree hours post-exercise. Protein synthesis of the legs\nand whole body was increased threefold when the sup-\nplement was ingested immediately after exercise, as\ncompared to just 12% when consumption was delayed.\nA limitation of the study was that training involved\nmoderate intensity, long duration aerobic exercise."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 29,
"text": "Thus,\nthe increased fractional synthetic rate was likely due to\ngreater mitochondrial and/or sarcoplasmic protein frac-\ntions, as opposed to synthesis of contractile elements\n[36].In contrast to the timing effects shown by Levenha-\ngen et al. [62], previous work by Rasmussen et al. [56]\nshowed no significant difference in leg net amino acid\nbalance between 6 g essential amino acids (EAA) co-\ningested with 35 g carbohydrate taken 1 hour versus 3\nhours post-exercise."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 30,
"text": "Compounding the unreliability of\nthe post-exercise ‘window’ is the finding by Tipton et al.\n[63] that immediate pre-exercise ingestion of the same\nEAA-carbohydrate solution resulted in a significantly\ngreater and more sustained MPS response compared to\nthe immediate post-exercise ingestion, although the val-\nidity of these findings have been disputed based on\nflawed methodology [36].Notably, Fujita et al [64] saw\nopposite results using a similar design, except the EAA-\ncarbohydrate was ingested 1 hour prior to exercise com-\npared to ingestion immediately pre-exercise in Tipton\net al. [63]. Adding yet more incongruity to the evidence,\nTipton et al."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 31,
"text": "[65] found no significant difference in net\nMPS between the ingestion of 20 g whey immediately\npre- versus the same solution consumed 1 hour post-\nexercise.Collectively, the available data lack any consist-\nent indication of an ideal post-exercise timing scheme\nfor maximizing MPS.\nIt also should be noted that measures of MPS assessed\nfollowing an acute bout of resistance exercise do not al-\nways occur in parallel with chronic upregulation of\ncausative myogenic signals [66] and are not necessarily\npredictive\nof\nlong-term\nhypertrophic\nresponses\nto\nregimented resistance training [67]. Moreover, the post-\nexercise rise in MPS in untrained subjects is not recapi-\ntulated in the trained state [68], further confounding\npractical relevance."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 32,
"text": "Thus, the utility of acute studies is\nlimited to providing clues and generating hypotheses\nregarding hypertrophic adaptations; any attempt to ex-\ntrapolate findings from such data to changes in lean\nbody mass is speculative, at best.\nMuscle hypertrophy\nA number of studies have directly investigated the long-\nterm hypertrophic effects of post-exercise protein con-\nsumption.The results of these trials are curiously\nconflicting, seemingly because of varied study design\nand methodology. Moreover, a majority of studies\nemployed both pre- and post-workout supplementation,\nmaking it impossible to tease out the impact of consum-\ning nutrients after exercise."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 33,
"text": "These confounding issues\nhighlight the difficulty in attempting to draw relevant\nconclusions as to the validity of an “anabolic window.”\nWhat follows is an overview of the current research on\nthe topic.Only those studies that specifically evaluated\nimmediate (≤1 hour) post-workout nutrient provision\nare discussed (see Table 1 for a summary of data).\nEsmarck et al. [69] provided the first experimental evi-\ndence that consuming protein immediately after training\nenhanced muscular growth compared to delayed protein\nintake. Thirteen untrained elderly male volunteers were\nmatched in pairs based on body composition and daily\nprotein intake and divided into two groups: P0 or P2.\nSubjects performed a progressive resistance training pro-\ngram of multiple sets for the upper and lower body."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 34,
"text": "P0\nAragon and Schoenfeld Journal of the International Society of Sports Nutrition 2013, 10:5\nPage 4 of 11\nhttp://www.jissn.com/content/10/1/5\nTable 1 Post-exercise nutrition and muscle hypertrophy\nStudy\nSubjects\nSupplementation\nProtein matched\nwith Control?\nMeasurement\ninstrument\nTraining protocol\nResults\nEsmarck\net al.[69]\n13 untrained\nelderly males\n10 g milk/soy protein combo consumed\neither immediately or 2 hours after exercise\nYes\nMRI and muscle\nbiopsy\nProgressive resistance training\nconsisting of multiple sets of lat\npulldown, leg press and knee\nextension performed 3 days/wk\nfor 12 wk\nSignificant increase in muscle CSA\nwith immediate vs."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 35,
"text": "delayed\nsupplementation\nCribb and\nHayes [70]\n23 young\nrecreational male\nbodybuilders\n1 g/kg of a supplement containing 40 g\nwhey isolate, 43 g glucose, and 7 g creatine\nmonohydrate consumed either immediately\nbefore and after exercise or in the early\nmorning and late evening\nYes\nDXA and muscle\nbiopsy\nProgressive resistance training\nconsisting of exercises for the\nmajor muscle groups performed\n3 days/wk for 10 wks\nSignificant increases in lean body\nmass and muscle CSA of type II\nfibers in immediate vs.delayed\nsupplementation\nWilloughby\net al."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 36,
"text": "[71]\n19 untrained\nyoung males\n20 g protein or 20 g dextrose consumed\n1 hour before and after exercise\nNo\nHydrostatic\nweighing, muscle\nbiopsy, surface\nmeasurements\nProgressive resistance training\nconsisting of 3 sets of 6–8 repetitions\nfor all the major muscles performed\n4 days/wk for 10 wks\nSignificant increase in total body\nmass, fat-free mass, and thigh\nmass with protein vs.carb\nsupplementation\nHulmi\net al."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 37,
"text": "[72]\n31 untrained\nyoung males\n15 g whey isolate or placebo consumed\nimmediately before and after exercise\nNo\nMRI, muscle\nbiopsy\nProgressive, periodized total body\nresistance training consisting of 2–5\nsets of 5–20 repetitions performed\n2 days/wk for 21 wks.\nSignificant increase in CSA of the\nvastus lateralis but not of the\nother quadriceps muscles in\nsupplemented group versus\nplacebo.\nVerdijk\net al.[73]\n28 untrained\nelderly males\n10 g casein hydrolysate or placebo\nconsumed immediately before and after\nexercise\nNo\nDXA, CT, and\nmuscle biopsy\nProgressive resistance training consisting\nof multiple sets of leg press and knee\nextension performed 3 days/wk for\n12 wks\nNo significant differences in\nmuscle CSA between groups\nHoffman\net al."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 38,
"text": "[74]\n33 well-trained\nyoung males\nSupplement containing 42 g protein (milk/\ncollagen blend) and 2 g carbohydrate\nconsumed either immediately before and\nafter exercise or in the early morning and\nlate evening\nYes\nDXA\nProgressive resistance training consisting\nof 3–4 sets of 6–10 repetitions of multiple\nexercises for the entire body peformed 4\ndays/wk for 10 weeks.\nNo significant differences in total\nbody mass or lean body mass\nbetween groups.\nErskine\net al."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 39,
"text": "[75]\n33 untrained\nyoung males\n20 g high quality protein or placebo\nconsumed immediately before and after\nexercise\nNo\nMRI\n4-6 sets of elbow flexion performed\n3 days/wk for 12 weeks\nNo significant differences in\nmuscle CSA between groups\nAragon and Schoenfeld Journal of the International Society of Sports Nutrition 2013, 10:5\nPage 5 of 11\nhttp://www.jissn.com/content/10/1/5\nreceived an oral protein/carbohydrate supplement im-\nmediately post-exercise while P2 received the same sup-\nplement 2 hours following the exercise bout.Training\nwas carried out 3 days a week for 12 weeks. At the end\nof the study period, cross-sectional area (CSA) of the\nquadriceps femoris and mean fiber area were signifi-\ncantly increased in the P0 group while no significant\nincrease was seen in P2."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 40,
"text": "These results support the pres-\nence of a post-exercise window and suggest that delaying\npost-workout nutrient intake may impede muscular\ngains.\nIn contrast to these findings, Verdijk et al.[73] failed to\ndetect any increases in skeletal muscle mass from con-\nsuming a post-exercise protein supplement in a similar\npopulation of elderly men. Twenty-eight untrained sub-\njects were randomly assigned to receive either a protein or\nplacebo supplement consumed immediately before and\nimmediately following the exercise session."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 41,
"text": "Subjects per-\nformed multiple sets of leg press and knee extension 3\ndays per week, with the intensity of exercise progressively\nincreased over the course of the 12 week training period.\nNo significant differences in muscle strength or hyper-\ntrophy were noted between groups at the end of the study\nperiod indicating that post exercise nutrient timing strat-\negies do not enhance training-related adaptation."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 42,
"text": "It should\nbe noted that, as opposed to the study by Esmark et al.\n[69] this study only investigated adaptive responses of sup-\nplementation on the thigh musculature; it therefore is not\nclear based on these results whether the upper body might\nrespond differently to post-exercise supplementation than\nthe lower body.\nIn an elegant single-blinded design, Cribb and Hayes\n[70] found a significant benefit to post-exercise protein\nconsumption in 23 recreational male bodybuilders.Sub-\njects were randomly divided into either a PRE-POST\ngroup that consumed a supplement containing protein,\ncarbohydrate and creatine immediately before and after\ntraining or a MOR-EVE group that consumed the same\nsupplement in the morning and evening at least 5 hours\noutside the workout."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 43,
"text": "Both groups performed regimented\nresistance training that progressively increased intensity\nfrom 70% 1RM to 95% 1RM over the course of 10 weeks.\nResults showed that the PRE-POST group achieved a sig-\nnificantly greater increase in lean body mass and increased\ntype II fiber area compared to MOR-EVE.Findings sup-\nport the benefits of nutrient timing on training-induced\nmuscular adaptations. The study was limited by the\naddition of creatine monohydrate to the supplement,\nwhich may have facilitated increased uptake following\ntraining. Moreover, the fact that the supplement was taken\nboth pre- and post-workout confounds whether an ana-\nbolic window mediated results.\nWilloughby et al. [71] also found that nutrient timing\nresulted in positive muscular adaptations."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 44,
"text": "Nineteen\nuntrained male subjects were randomly assigned to\neither receive 20 g of protein or 20 grams dextrose\nadministered 1 hour before and after resistance exercise.\nTraining consisted of 3 sets of 6–8 repetitions at 85%–\n90% intensity.Training was performed 4 times a week\nover the course of 10 weeks. At the end of the study\nperiod, total body mass, fat-free mass, and thigh mass\nwas significantly greater in the protein-supplemented\ngroup compared to the group that received dextrose.\nGiven that the group receiving the protein supplement\nconsumed an additional 40 grams of protein on training\ndays, it is difficult to discern whether results were due\nto the increased protein intake or the timing of the\nsupplement.\nIn a comprehensive study of well-trained subjects,\nHoffman et al."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 45,
"text": "[74] randomly assigned 33 well-trained\nmales to receive a protein supplement either in the\nmorning and evening (n = 13) or immediately before and\nimmediately after resistance exercise (n = 13).Seven par-\nticipants served as unsupplemented controls. Workouts\nconsisted of 3–4 sets of 6–10 repetitions of multiple\nexercises for the entire body.\nTraining was carried out\non 4 day-a-week split routine with intensity progres-\nsively increased over the course of the study period.\nAfter 10 weeks, no significant differences were noted be-\ntween groups with respect to body mass and lean body\nmass."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 46,
"text": "The study was limited by its use of DXA to assess\nbody composition, which lacks the sensitivity to detect\nsmall changes in muscle mass compared to other im-\naging modalities such as MRI and CT [76].\nHulmi et al.[72] randomized 31 young untrained male\nsubjects into 1 of 3 groups: protein supplement (n = 11),\nnon-caloric placebo (n = 10) or control (n = 10). High-\nintensity resistance training was carried out over 21\nweeks. Supplementation was provided before and after\nexercise. At the end of the study period, muscle CSA\nwas significantly greater in the protein-supplemented\ngroup compared to placebo or control. A strength of the\nstudy was its long-term training period, providing sup-\nport for the beneficial effects of nutrient timing on\nchronic hypertrophic gains."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 47,
"text": "Again, however, it is unclear\nwhether enhanced results associated with protein sup-\nplementation were due to timing or increased protein\nconsumption.\nMost recently, Erskine et al.[75]\nfailed to show a\nhypertrophic benefit from post-workout nutrient timing.\nSubjects were 33 untrained young males, pair-matched\nfor habitual protein intake and strength response to a 3-\nweek pre-study resistance training program. After a 6-\nweek washout period where no training was performed,\nsubjects were then randomly assigned to receive either a\nprotein supplement or a placebo immediately before and\nafter resistance exercise."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 48,
"text": "Training consisted of 6– 8 sets\nof elbow flexion carried out 3 days a week for 12 weeks.\nAragon and Schoenfeld Journal of the International Society of Sports Nutrition 2013, 10:5\nPage 6 of 11\nhttp://www.jissn.com/content/10/1/5\nNo significant differences were found in muscle volume\nor anatomical cross-sectional area between groups.\nDiscussion\nDespite claims that immediate post-exercise nutritional\nintake\nis\nessential\nto\nmaximize\nhypertrophic\ngains,\nevidence-based support for such an “anabolic window of\nopportunity” is far from definitive.The hypothesis is based\nlargely on the pre-supposition that training is carried out\nin a fasted state."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 49,
"text": "During fasted exercise, a concomitant in-\ncrease in muscle protein breakdown causes the pre-\nexercise net negative amino acid balance to persist in the\npost-exercise period despite training-induced increases in\nmuscle protein synthesis [36].Thus, in the case of resist-\nance training after an overnight fast, it would make sense\nto provide immediate nutritional intervention--ideally in\nthe form of a combination of protein and carbohydrate--\nfor the purposes of promoting muscle protein synthesis\nand reducing proteolysis, thereby switching a net catabolic\nstate into an anabolic one."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 50,
"text": "Over a chronic period, this tac-\ntic could conceivably lead cumulatively to an increased\nrate of gains in muscle mass.\nThis inevitably begs the question of how pre-exercise\nnutrition might influence the urgency or effectiveness of\npost-exercise nutrition, since not everyone engages in\nfasted training.In practice, it is common for those with\nthe primary goal of increasing muscular size and/or\nstrength to make a concerted effort to consume a pre-\nexercise meal within 1-2 hours prior to the bout in at-\ntempt to maximize training performance. Depending on\nits size and composition, this meal can conceivably func-\ntion as both a pre- and an immediate post-exercise meal,\nsince the time course of its digestion/absorption can per-\nsist well into the recovery period. Tipton et al."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 51,
"text": "[63]\nobserved that a relatively small dose of EAA (6 g) taken\nimmediately pre-exercise was able to elevate blood and\nmuscle amino acid levels by roughly 130%, and these\nlevels remained elevated\nfor 2 hours after the exercise\nbout.Although this finding was subsequently challenged\nby Fujita et al. [64], other research by Tipton et al. [65]\nshowed that the ingestion of 20 g whey taken immedi-\nately pre-exercise elevated muscular uptake of amino\nacids to 4.4 times pre-exercise resting levels during exer-\ncise, and did not return to baseline levels until 3 hours\npost-exercise. These data indicate that even minimal-to-\nmoderate pre-exercise\nEAA or high-quality protein\ntaken immediately before resistance training is capable\nof sustaining amino acid delivery into the post-exercise\nperiod."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 52,
"text": "Given this scenario, immediate post-exercise\nprotein dosing for the aim of mitigating catabolism\nseems redundant.The next scheduled protein-rich\nmeal (whether it occurs immediately or 1–2 hours\npost-exercise) is likely sufficient for maximizing recov-\nery and anabolism.\nOn the other hand, there are others who might train\nbefore lunch or after work, where the previous meal was\nfinished 4–6 hours prior to commencing exercise. This\nlag in nutrient consumption can be considered signifi-\ncant enough to warrant post-exercise intervention if\nmuscle retention or growth is the primary goal. Layman\n[77] estimated that the anabolic effect of a meal lasts 5-6\nhours based on the rate of postprandial amino acid me-\ntabolism."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 53,
"text": "However, infusion-based studies in rats [78,79]\nand humans [80,81]\nindicate that the postprandial rise\nin MPS from ingesting amino acids or a protein-rich\nmeal is more transient, returning to baseline within 3\nhours despite sustained elevations in amino acid avail-\nability.It thus has been hypothesized that a “muscle full”\nstatus can be reached where MPS becomes refractory,\nand circulating amino acids are shunted toward oxida-\ntion or fates other than MPS."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 54,
"text": "In light of these findings,\nwhen training is initiated more than ~3–4 hours after\nthe preceding meal, the classical recommendation to\nconsume protein (at least 25 g) as soon as possible\nseems warranted in order to reverse the catabolic state,\nwhich in turn could expedite muscular recovery and\ngrowth.\nHowever, as illustrated previously, minor pre-\nexercise nutritional interventions can be undertaken if a\nsignificant delay in the post-exercise meal is anticipated.\nAn interesting area of speculation is the generalizability\nof these recommendations across training statuses and\nage groups.Burd et al."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 55,
"text": "[82] reported that an acute bout of\nresistance training in untrained subjects stimulates both\nmitochondrial and myofibrillar protein synthesis, whereas\nin trained subjects, protein synthesis becomes more pre-\nferential toward the myofibrillar component.This suggests\na less global response in advanced trainees that potentially\nwarrants closer attention to protein timing and type (e.g.,\nhigh-leucine sources such as dairy proteins) in order to\noptimize rates of muscular adaptation. In addition to\ntraining status, age can influence training adaptations. Eld-\nerly subjects exhibit what has been termed “anabolic re-\nsistance,” characterized by a lower receptivity to amino\nacids and resistance training [83]."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 56,
"text": "The mechanisms under-\nlying this phenomenon are not clear, but there is evidence\nthat in younger adults, the acute anabolic response to pro-\ntein feeding appears to plateau at a lower dose than in eld-\nerly subjects.Illustrating this point, Moore et al. [84]\nfound that 20 g whole egg protein maximally stimulated\npost-exercise MPS, while 40 g increased leucine oxidation\nwithout any further increase in MPS in young men. In\ncontrast, Yang et al. [85] found that elderly subjects dis-\nplayed greater increases in MPS when consuming a post-\nexercise dose of 40 g whey protein compared to 20 g.\nThese findings suggest that older subjects require higher\nindividual protein doses for the purpose of optimizing the\nanabolic response to training."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 57,
"text": "Further research is needed\nto better assess post-workout nutrient timing response\nAragon and Schoenfeld Journal of the International Society of Sports Nutrition 2013, 10:5\nPage 7 of 11\nhttp://www.jissn.com/content/10/1/5\nacross various populations, particularly with respect to\ntrained/untrained and young/elderly subjects.\nThe body of research in this area has several limita-\ntions.First, while there is an abundance of acute data,\ncontrolled, long-term trials that systematically compare\nthe effects of various post-exercise timing schemes are\nlacking. The majority of chronic studies have examined\npre- and post-exercise supplementation simultaneously,\nas opposed to comparing the two treatments against\neach other. This prevents the possibility of isolating the\neffects of either treatment."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 58,
"text": "That is, we cannot know\nwhether pre- or post-exercise supplementation was the\ncritical contributor to the outcomes (or lack thereof).\nAnother important limitation is that the majority of\nchronic studies neglect to match total protein intake be-\ntween the conditions compared.As such, it’s not pos-\nsible\nto\nascertain\nwhether\npositive\noutcomes\nwere\ninfluenced by timing relative to the training bout, or\nsimply by a greater protein intake overall. Further, dos-\ning strategies employed in the preponderance of chronic\nnutrient timing studies have been overly conservative,\nproviding only 10–20 g protein near the exercise bout.\nMore research is needed using protein doses known to\nmaximize acute anabolic response, which has been\nshown to be approximately 20–40 g, depending on age\n[84,85]."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 59,
"text": "There is also a lack of chronic studies examining\nthe co-ingestion of protein and carbohydrate near train-\ning.Thus far, chronic studies have yielded equivocal\nresults. On the whole, they have not corroborated the\nconsistency of positive outcomes seen in acute studies\nexamining post-exercise nutrition.\nAnother limitation is that the majority of studies on\nthe topic have been carried out in untrained individuals.\nMuscular adaptations in those without resistance train-\ning experience tend to be robust, and do not necessarily\nreflect gains experienced in trained subjects."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 60,
"text": "It therefore\nremains to be determined whether training status influ-\nences the hypertrophic response to post-exercise nutri-\ntional supplementation.\nA final limitation of the available research is that current\nmethods used to assess muscle hypertrophy are widely\ndisparate, and the accuracy of the measures obtained are\ninexact [68].As such, it is questionable whether these\ntools are sensitive enough to detect small differences in\nmuscular hypertrophy. Although minor\nvariances in\nmuscle mass would be of little relevance to the general\npopulation, they could be very meaningful for elite ath-\nletes and bodybuilders. Thus, despite conflicting evidence,\nthe potential benefits of post-exercise supplementation\ncannot be readily dismissed for those seeking to optimize\na hypertrophic response."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 61,
"text": "By the same token, widely vary-\ning feeding patterns among individuals challenge the com-\nmon assumption that the post-exercise “anabolic window\nof opportunity” is universally narrow and urgent.\nPractical applications\nDistilling the data into firm, specific recommendations is\ndifficult due to the inconsistency of findings and scarcity\nof systematic investigations seeking to optimize pre-\nand/or post-exercise protein dosage and timing.Practical\nnutrient timing applications for the goal of muscle\nhypertrophy inevitably must be tempered with field\nobservations and experience in order to bridge gaps in\nthe scientific literature."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 62,
"text": "With that said, high-quality pro-\ntein dosed at 0.4–0.5 g/kg of LBM at both pre- and\npost-exercise is a simple, relatively fail-safe general\nguideline that reflects the current evidence showing a\nmaximal acute anabolic effect of 20–40 g [53,84,85].For\nexample, someone with 70 kg of LBM would consume\nroughly 28–35 g protein in both the pre- and post exer-\ncise meal. Exceeding this would be have minimal detri-\nment if any, whereas significantly under-shooting or\nneglecting it altogether would not maximize the anabolic\nresponse.\nDue to the transient anabolic impact of a protein-rich\nmeal and its potential synergy with the trained state,\npre- and post-exercise meals should not be separated by\nmore than approximately 3–4 hours, given a typical re-\nsistance training bout lasting 45–90 minutes."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 63,
"text": "If protein\nis delivered within particularly large mixed-meals (which\nare inherently more anticatabolic), a case can be made\nfor lengthening the interval to 5–6 hours.This strategy\ncovers the hypothetical timing benefits while allowing\nsignificant flexibility in the length of the feeding win-\ndows before and after training. Specific timing within\nthis general framework would vary depending on indi-\nvidual preference and tolerance, as well as exercise\nduration. One of many possible examples involving a 60-\nminute resistance training bout could have up to 90-\nminute feeding windows on both sides of the bout, given\ncentral placement between the meals."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 64,
"text": "In contrast, bouts\nexceeding typical duration would default to shorter feed-\ning windows if the 3–4 hour pre- to post-exercise meal\ninterval is maintained.Shifting the training session\ncloser to the pre- or post-exercise meal should be dic-\ntated by personal preference, tolerance, and lifestyle/\nscheduling constraints.\nEven more so than with protein, carbohydrate dosage\nand timing relative to resistance training is a gray area\nlacking cohesive data to form concrete recommenda-\ntions. It is tempting to recommend pre- and post-\nexercise carbohydrate doses that at least match or\nexceed the amounts of protein consumed in these meals.\nHowever, carbohydrate availability during and after exer-\ncise is of greater concern for endurance as opposed to\nstrength or hypertrophy goals."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 65,
"text": "Furthermore, the import-\nance of co-ingesting post-exercise protein and carbohy-\ndrate has recently been challenged by studies examining\nthe early recovery period, particularly when sufficient\nAragon and Schoenfeld Journal of the International Society of Sports Nutrition 2013, 10:5\nPage 8 of 11\nhttp://www.jissn.com/content/10/1/5\nprotein is provided.Koopman et al [52] found that after\nfull-body resistance training, adding carbohydrate (0.15,\nor 0.6 g/kg/hr) to amply dosed casein hydrolysate (0.3 g/\nkg/hr) did not increase whole body protein balance dur-\ning a 6-hour post-exercise recovery period compared to\nthe protein-only treatment."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 66,
"text": "Subsequently, Staples et al\n[53] reported that after lower-body resistance exercise\n(leg extensions), the increase in post-exercise muscle\nprotein balance from ingesting 25 g whey isolate was not\nimproved by an additional 50 g maltodextrin during a 3-\nhour recovery period.For the goal of maximizing rates\nof muscle gain, these findings support the broader ob-\njective of meeting total daily carbohydrate need instead\nof specifically timing its constituent doses. Collectively,\nthese data indicate an increased potential for dietary\nflexibility while maintaining the pursuit of optimal\ntiming.\nCompeting interests\nThe authors declare that they have no competing interests.\nAuthors’ contribution\nAAA and BJS each contributed equally to the formulation and writing of the\nmanuscript."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 67,
"text": "Both authors read and approved the final manuscript.\nAuthor details\n1California State University, Northridge, CA, USA.2Department of Health\nScience, Lehman College, Bronx, NY, USA.\nReceived: 20 December 2012 Accepted: 25 January 2013\nPublished: 29 January 2013\nReferences\n1.\nKerksick C, Harvey T, Stout J, Campbell B, Wilborn C, Kreider R, Kalman D,\nZiegenfuss T, Lopez H, Landis J, Ivy JL, Antonio J: International Society of\nSports Nutrition position stand: nutrient timing. J Int Soc Sports Nutr.\n2008, 5:17.\n2.\nIvy J, Portman R: Nutrient Timing: The Future of Sports Nutrition. North\nBergen, NJ: Basic Health Publications; 2004.\n3.\nCandow DG, Chilibeck PD: Timing of creatine or protein supplementation\nand resistance training in the elderly."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 68,
"text": "Appl Physiol Nutr Metab 2008, 33\n(1):184–90.\n4.\nHulmi JJ, Lockwood CM, Stout JR: Effect of protein/essential amino acids\nand resistance training on skeletal muscle hypertrophy: A case for whey\nprotein.Nutr Metab (Lond). 2010, 7:51.\n5.\nKukuljan S, Nowson CA, Sanders K, Daly RM: Effects of resistance exercise\nand fortified milk on skeletal muscle mass, muscle size, and functional\nperformance in middle-aged and older men: an 18-mo randomized\ncontrolled trial. J Appl Physiol 2009, 107(6):1864–73.\n6.\nLambert CP, Flynn MG: Fatigue during high-intensity intermittent\nexercise: application to bodybuilding. Sports Med. 2002, 32(8):511–22.\n7.\nMacDougall JD, Ray S, Sale DG, McCartney N, Lee P, Garner S: Muscle\nsubstrate utilization and lactate production."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 69,
"text": "Can J Appl Physiol 1999,\n24(3):209–15.\n8.\nRobergs RA, Pearson DR, Costill DL, Fink WJ, Pascoe DD, Benedict MA,\nLambert CP, Zachweija JJ: Muscle glycogenolysis during differing\nintensities of weight-resistance exercise.J Appl Physiol 1991, 70(4):1700–6.\n9.\nGoodman CA, Mayhew DL, Hornberger TA: Recent progress toward\nunderstanding the molecular mechanisms that regulate skeletal muscle\nmass. Cell Signal 2011, 23(12):1896–906.\n10.\nBodine SC, Stitt TN, Gonzalez M, Kline WO, Stover GL, Bauerlein R,\nZlotchenko E, Scrimgeour A, Lawrence JC, Glass DJ, Yancopoulos GD: Akt/\nmTOR pathway is a crucial regulator of skeletal muscle hypertrophy and\ncan prevent muscle atrophy in vivo. Nat Cell Biol. 2001, 3(11):1014–9.\n11.\nJacinto E, Hall MN: Tor signalling in bugs, brain and brawn."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 70,
"text": "Nat Rev Mol\nCell Biol 2003, 4(2):117–26.\n12.\nIzumiya Y, Hopkins T, Morris C, Sato K, Zeng L, Viereck J, Hamilton JA, Ouchi\nN, LeBrasseur NK, Walsh K: Fast/Glycolytic muscle fiber growth reduces fat\nmass and improves metabolic parameters in obese mice.Cell Metab.\n2008, 7(2):159–72.\n13.\nMcBride A, Ghilagaber S, Nikolaev A, Hardie DG: The glycogen-binding\ndomain on the AMPK beta subunit allows the kinase to act as a\nglycogen sensor. Cell Metab. 2009, 9(1):23–34.\n14.\nWojtaszewski JF, MacDonald C, Nielsen JN, Hellsten Y, Hardie DG, Kemp BE,\nKiens B, Richter EA: Regulation of 5’AMP-activated protein kinase activity\nand substrate utilization in exercising human skeletal muscle."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 71,
"text": "Am J\nPhysiol Endocrinol Metab 2003, 284(4):E813–22.\n15.\nCreer A, Gallagher P, Slivka D, Jemiolo B, Fink W, Trappe S: Influence of muscle\nglycogen availability on ERK1/2 and Akt signaling after resistance exercise\nin human skeletal muscle.J Appl Physiol 2005, 99(3):950–6.\n16.\nChurchley EG, Coffey VG, Pedersen DJ, Shield A, Carey KA, Cameron-Smith\nD, Hawley JA: Influence of preexercise muscle glycogen content on\ntranscriptional activity of metabolic and myogenic genes in well-trained\nhumans. J Appl Physiol 2007, 102(4):1604–11.\n17.\nDennis PB, Jaeschke A, Saitoh M, Fowler B, Kozma SC, Thomas G:\nMammalian TOR: a homeostatic ATP sensor."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 72,
"text": "Science 2001,\n294(5544):1102–5.\n18.\nCamera DM, West DW, Burd NA, Phillips SM, Garnham AP, Hawley JA, Coffey\nVG: Low muscle glycogen concentration does not suppress the anabolic\nresponse to resistance exercise.J Appl Physiol 2012, 113(2):206–14.\n19.\nLemon PW, Mullin JP: Effect of initial muscle glycogen levels on protein\ncatabolism during exercise. J Appl Physiol 1980, 48(4):624–9.\n20.\nBlomstrand E, Saltin B, Blomstrand E, Saltin B: Effect of muscle glycogen on\nglucose, lactate and amino acid metabolism during exercise and\nrecovery in human subjects. J Physiol 1999, 514(1):293–302.\n21.\nIvy JL: Glycogen resynthesis after exercise: effect of carbohydrate intake.\nInt J Sports Med."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 73,
"text": "1998, 19(Suppl 2):S142–5.\n22.\nRichter EA, Derave W, Wojtaszewski JF: Glucose, exercise and insulin:\nemerging concepts.J Physiol 2001, 535(Pt 2):313–22.\n23.\nDerave W, Lund S, Holman GD, Wojtaszewski J, Pedersen O, Richter EA:\nContraction-stimulated muscle glucose transport and GLUT-4 surface\ncontent are dependent on glycogen content. Am J Physiol 1999, 277\n(6 Pt 1):E1103–10.\n24.\nKawanaka K, Nolte LA, Han DH, Hansen PA, Holloszy JO: Mechanisms\nunderlying impaired GLUT-4 translocation in glycogen-\nsupercompensated muscles of exercised rats. Am J Physiol Endocrinol\nMetab 2000, 279(6):E1311–8.\n25.\nO’Gorman DJ, Del Aguila LF, Williamson DL, Krishnan RK, Kirwan JP: Insulin\nand exercise differentially regulate PI3-kinase and glycogen synthase in\nhuman skeletal muscle."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 74,
"text": "J Appl Physiol 2000, 89(4):1412–9.\n26.\nBerardi JM, Price TB, Noreen EE, Lemon PW: Postexercise muscle glycogen\nrecovery enhanced with a carbohydrate-protein supplement.Med Sci\nSports Exerc. 2006, 38(6):1106–13.\n27.\nIvy JL, Goforth HW Jr, Damon BM, McCauley TR, Parsons EC, Price TB: Early\npostexercise muscle glycogen recovery is enhanced with a\ncarbohydrate-protein supplement. J Appl Physiol 2002, 93(4):1337–44.\n28.\nZawadzki KM, Yaspelkis BB 3rd, Ivy JL: Carbohydrate-protein complex\nincreases the rate of muscle glycogen storage after exercise. J Appl\nPhysiol 1992, 72(5):1854–9.\n29.\nTarnopolsky MA, Bosman M, Macdonald JR, Vandeputte D, Martin J, Roy BD:\nPostexercise protein-carbohydrate and carbohydrate supplements\nincrease muscle glycogen in men and women."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 75,
"text": "J Appl Physiol 1997,\n83(6):1877–83.\n30.\nJentjens RL, van Loon LJ, Mann CH, Wagenmakers AJ, Jeukendrup AE:\nAddition of protein and amino acids to carbohydrates does not enhance\npostexercise muscle glycogen synthesis.J Appl Physiol 2001, 91(2):839–46.\n31.\nJentjens R, Jeukendrup A: Determinants of post-exercise glycogen\nsynthesis during short-term recovery. Sports Med. 2003, 33(2):117–44.\n32.\nRoy BD, Tarnopolsky MA: Influence of differing macronutrient intakes on\nmuscle glycogen resynthesis after resistance exercise. J Appl Physiol 1998,\n84(3):890–6.\n33.\nParkin JA, Carey MF, Martin IK, Stojanovska L, Febbraio MA: Muscle\nglycogen storage following prolonged exercise: effect of timing of\ningestion of high glycemic index food. Med Sci Sports Exerc."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 76,
"text": "1997,\n29(2):220–4.\n34.\nFox AK, Kaufman AE, Horowitz JF: Adding fat calories to meals after\nexercise does not alter glucose tolerance.J Appl Physiol 2004, 97(1):11–6.\nAragon and Schoenfeld Journal of the International Society of Sports Nutrition 2013, 10:5\nPage 9 of 11\nhttp://www.jissn.com/content/10/1/5\n35.\nBiolo G, Tipton KD, Klein S, Wolfe RR: An abundant supply of amino acids\nenhances the metabolic effect of exercise on muscle protein. Am J\nPhysiol 1997, 273(1 Pt 1):E122–9.\n36.\nKumar V, Atherton P, Smith K, Rennie MJ: Human muscle protein synthesis and\nbreakdown during and after exercise. J Appl Physiol 2009, 106(6):2026–39.\n37.\nPitkanen HT, Nykanen T, Knuutinen J, Lahti K, Keinanen O, Alen M, Komi PV,\nMero AA: Free amino acid pool and muscle protein balance after\nresistance exercise."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 77,
"text": "Med Sci Sports Exerc.2003, 35(5):784–92.\n38.\nBiolo G, Williams BD, Fleming RY, Wolfe RR: Insulin action on muscle\nprotein kinetics and amino acid transport during recovery after\nresistance exercise. Diabetes 1999, 48(5):949–57.\n39.\nFluckey JD, Vary TC, Jefferson LS, Farrell PA: Augmented insulin action on\nrates of protein synthesis after resistance exercise in rats. Am J Physiol\n1996, 270(2 Pt 1):E313–9.\n40.\nDenne SC, Liechty EA, Liu YM, Brechtel G, Baron AD: Proteolysis in skeletal\nmuscle and whole body in response to euglycemic hyperinsulinemia in\nnormal adults. Am J Physiol 1991, 261(6 Pt 1):E809–14.\n41.\nGelfand RA, Barrett EJ: Effect of physiologic hyperinsulinemia on skeletal\nmuscle protein synthesis and breakdown in man."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 78,
"text": "J Clin Invest 1987, 80(1):1–6.\n42.\nHeslin MJ, Newman E, Wolf RF, Pisters PW, Brennan MF: Effect of\nhyperinsulinemia on whole body and skeletal muscle leucine carbon\nkinetics in humans.Am J Physiol 1992, 262(6 Pt 1):E911–8.\n43.\nKettelhut IC, Wing SS, Goldberg AL: Endocrine regulation of protein\nbreakdown in skeletal muscle. Diabetes Metab Rev. 1988, 4(8):751–72.\n44.\nKim DH, Kim JY, Yu BP, Chung HY: The activation of NF-kappaB through\nAkt-induced FOXO1 phosphorylation during aging and its modulation\nby calorie restriction."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 79,
"text": "Biogerontology 2008, 9(1):33–47.\n45.\nGreenhaff PL, Karagounis LG, Peirce N, Simpson EJ, Hazell M, Layfield R,\nWackerhage H, Smith K, Atherton P, Selby A, Rennie MJ: Disassociation\nbetween the effects of amino acids and insulin on signaling, ubiquitin\nligases, and protein turnover in human muscle.Am J Physiol Endocrinol\nMetab 2008, 295(3):E595–604.\n46.\nRennie MJ, Bohe J, Smith K, Wackerhage H, Greenhaff P: Branched-chain\namino acids as fuels and anabolic signals in human muscle. J Nutr 2006,\n136(1 Suppl):264S–8S.\n47.\nCapaldo B, Gastaldelli A, Antoniello S, Auletta M, Pardo F, Ciociaro D, Guida\nR, Ferrannini E, Sacca L: Splanchnic and leg substrate exchange after\ningestion of a natural mixed meal in humans."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 80,
"text": "Diabetes 1999, 48(5):958–66.\n48.\nPower O, Hallihan A, Jakeman P: Human insulinotropic response to oral\ningestion of native and hydrolysed whey protein.Amino Acids. 2009,\n37(2):333–9.\n49.\nGlynn EL, Fry CS, Drummond MJ, Dreyer HC, Dhanani S, Volpi E, Rasmussen\nBB: Muscle protein breakdown has a minor role in the protein anabolic\nresponse to essential amino acid and carbohydrate intake following\nresistance exercise. Am J Physiol Regul Integr Comp Physiol 2010, 299(2):\nR533–40.\n50.\nTipton KD, Ferrando AA, Phillips SM, Doyle D Jr, Wolfe RR: Postexercise net\nprotein synthesis in human muscle from orally administered amino\nacids."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 81,
"text": "Am J Physiol 1999, 276(4 Pt 1):E628–34.\n51.\nMiller SL, Tipton KD, Chinkes DL, Wolf SE, Wolfe RR: Independent and\ncombined effects of amino acids and glucose after resistance exercise.\nMed Sci Sports Exerc.2003, 35(3):449–55.\n52.\nKoopman R, Beelen M, Stellingwerff T, Pennings B, Saris WH, Kies AK,\nKuipers H, van Loon LJ: Coingestion of carbohydrate with protein does\nnot further augment postexercise muscle protein synthesis. Am J Physiol\nEndocrinol Metab 2007, 293(3):E833–42.\n53.\nStaples AW, Burd NA, West DW, Currie KD, Atherton PJ, Moore DR, Rennie\nMJ, Macdonald MJ, Baker SK, Phillips SM: Carbohydrate does not augment\nexercise-induced protein accretion versus protein alone. Med Sci Sports\nExerc."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 82,
"text": "2011, 43(7):1154–61.\n54.\nBorsheim E, Cree MG, Tipton KD, Elliott TA, Aarsland A, Wolfe RR: Effect of\ncarbohydrate intake on net muscle protein synthesis during recovery\nfrom resistance exercise.J Appl Physiol 2004, 96(2):674–8.\n55.\nKoopman R, Wagenmakers AJ, Manders RJ, Zorenc AH, Senden JM,\nGorselink M, Keizer HA, van Loon LJ: Combined ingestion of protein and\nfree leucine with carbohydrate increases postexercise muscle protein\nsynthesis in vivo in male subjects. Am J Physiol Endocrinol Metab 2005,\n288(4):E645–53.\n56.\nRasmussen BB, Tipton KD, Miller SL, Wolf SE, Wolfe RR: An oral essential\namino acid-carbohydrate supplement enhances muscle protein\nanabolism after resistance exercise."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 83,
"text": "J Appl Physiol 2000, 88(2):386–92.\n57.\nTang JE, Manolakos JJ, Kujbida GW, Lysecki PJ, Moore DR, Phillips SM:\nMinimal whey protein with carbohydrate stimulates muscle protein\nsynthesis following resistance exercise in trained young men.Appl\nPhysiol Nutr Metab 2007, 32(6):1132–8.\n58.\nTipton KD, Elliott TA, Cree MG, Wolf SE, Sanford AP, Wolfe RR: Ingestion of\ncasein and whey proteins result in muscle anabolism after resistance\nexercise. Med Sci Sports Exerc. 2004, 36(12):2073–81.\n59.\nTipton KD, Elliott TA, Ferrando AA, Aarsland AA, Wolfe RR: Stimulation of\nmuscle anabolism by resistance exercise and ingestion of leucine plus\nprotein. Appl Physiol Nutr Metab 2009, 34(2):151–61.\n60.\nPhillips SM, Van Loon LJ: Dietary protein for athletes: from requirements\nto optimum adaptation. J Sports Sci."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 84,
"text": "2011, 29(Suppl 1):S29–38.\n61.\nPhillips SM: The science of muscle hypertrophy: making dietary protein\ncount.Proc Nutr Soc 2011, 70(1):100–3.\n62.\nLevenhagen DK, Gresham JD, Carlson MG, Maron DJ, Borel MJ, Flakoll PJ:\nPostexercise nutrient intake timing in humans is critical to recovery of\nleg glucose and protein homeostasis. Am J Physiol Endocrinol Metab 2001,\n280(6):E982–93.\n63.\nTipton KD, Rasmussen BB, Miller SL, Wolf SE, Owens-Stovall SK, Petrini BE,\nWolfe RR: Timing of amino acid-carbohydrate ingestion alters anabolic\nresponse of muscle to resistance exercise."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 85,
"text": "Am J Physiol Endocrinol Metab\n2001, 281(2):E197–206.\n64.\nFujita S, Dreyer HC, Drummond MJ, Glynn EL, Volpi E, Rasmussen BB:\nEssential amino acid and carbohydrate ingestion before resistance\nexercise does not enhance postexercise muscle protein synthesis.J Appl\nPhysiol 2009, 106(5):1730–9.\n65.\nTipton KD, Elliott TA, Cree MG, Aarsland AA, Sanford AP, Wolfe RR:\nStimulation of net muscle protein synthesis by whey protein ingestion\nbefore and after exercise. Am J Physiol Endocrinol Metab 2007, 292(1):E71–6.\n66.\nCoffey VG, Shield A, Canny BJ, Carey KA, Cameron-Smith D, Hawley JA:\nInteraction of contractile activity and training history on mRNA\nabundance in skeletal muscle from trained athletes."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 86,
"text": "Am J Physiol\nEndocrinol Metab 2006, 290(5):E849–55.\n67.\nTimmons JA: Variability in training-induced skeletal muscle adaptation.\nJ Appl Physiol 2011, 110(3):846–53.\n68.\nAdams G, Bamman MM: Characterization and regulation of mechanical\nloading-induced compensatory muscle hypertrophy.Comprehensive\nPhysiology 2012, 2829:2970.\n69.\nEsmarck B, Andersen JL, Olsen S, Richter EA, Mizuno M, Kjaer M: Timing of\npostexercise protein intake is important for muscle hypertrophy with\nresistance training in elderly humans. J Physiol 2001, 535(Pt 1):301–11.\n70.\nCribb PJ, Hayes A: Effects of supplement timing and resistance\nexercise on skeletal muscle hypertrophy. Med Sci Sports Exerc."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 87,
"text": "2006,\n38(11):1918–25.\n71.\nWilloughby DS, Stout JR, Wilborn CD: Effects of resistance training and\nprotein plus amino acid supplementation on muscle anabolism, mass,\nand strength.Amino Acids. 2007, 32(4):467–77.\n72.\nHulmi JJ, Kovanen V, Selanne H, Kraemer WJ, Hakkinen K, Mero AA: Acute\nand long-term effects of resistance exercise with or without protein\ningestion on muscle hypertrophy and gene expression. Amino Acids.\n2009, 37(2):297–308.\n73.\nVerdijk LB, Jonkers RA, Gleeson BG, Beelen M, Meijer K, Savelberg HH,\nWodzig WK, Dendale P, van Loon LJ: Protein supplementation before and\nafter exercise does not further augment skeletal muscle hypertrophy\nafter resistance training in elderly men."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 88,
"text": "Am J Clin Nutr 2009, 89(2):608–16.\n74.\nHoffman JR, Ratamess NA, Tranchina CP, Rashti SL, Kang J, Faigenbaum AD:\nEffect of protein-supplement timing on strength, power, and body-\ncomposition changes in resistance-trained men.Int J Sport Nutr Exerc\nMetab. 2009, 19(2):172–85.\n75.\nErskine RM, Fletcher G, Hanson B, Folland JP: Whey protein does not\nenhance the adaptations to elbow flexor resistance training. Med Sci\nSports Exerc. 2012, 44(9):1791–800.\n76.\nLevine JA, Abboud L, Barry M, Reed JE, Sheedy PF, Jensen MD: Measuring\nleg muscle and fat mass in humans: comparison of CT and dual-energy\nX-ray absorptiometry. J Appl Physiol 2000, 88(2):452–6.\n77.\nLayman DK: Protein quantity and quality at levels above the RDA\nimproves adult weight loss."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 89,
"text": "J Am Coll Nutr 2004, 23(6 Suppl):631S–6S.\n78.\nNorton LE, Layman DK, Bunpo P, Anthony TG, Brana DV, Garlick PJ: The\nleucine content of a complete meal directs peak activation but not\nduration of skeletal muscle protein synthesis and mammalian target of\nrapamycin signaling in rats.J Nutr 2009, 139(6):1103–9.\nAragon and Schoenfeld Journal of the International Society of Sports Nutrition 2013, 10:5\nPage 10 of 11\nhttp://www.jissn.com/content/10/1/5\n79.\nWilson GJ, Layman DK, Moulton CJ, Norton LE, Anthony TG, Proud CG,\nRupassara SI, Garlick PJ: Leucine or carbohydrate supplementation\nreduces AMPK and eEF2 phosphorylation and extends postprandial\nmuscle protein synthesis in rats."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 90,
"text": "Am J Physiol Endocrinol Metab 2011,\n301(6):E1236–42.\n80.\nAtherton PJ, Etheridge T, Watt PW, Wilkinson D, Selby A, Rankin D, Smith K,\nRennie MJ: Muscle full effect after oral protein: time-dependent\nconcordance and discordance between human muscle protein synthesis\nand mTORC1 signaling.Am J Clin Nutr 2010, 92(5):1080–8.\n81.\nBohe J, Low JF, Wolfe RR, Rennie MJ: Latency and duration of stimulation\nof human muscle protein synthesis during continuous infusion of amino\nacids. J Physiol 2001, 532(Pt 2):575–9.\n82.\nBurd NA, Tang JE, Moore DR, Phillips SM: Exercise training and protein\nmetabolism: influences of contraction, protein intake, and sex-based\ndifferences."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 91,
"text": "J Appl Physiol 2009, 106(5):1692–701.\n83.\nBreen L, Phillips SM: Interactions between exercise and nutrition to\nprevent muscle waste during aging.Br J Clin Pharmacol 2012."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 92,
"text": "doi:10.1111/\nj.1365-2125.2012.04456.x [Epub ahead of print].\n84.\nMoore DR, Robinson MJ, Fry JL, Tang JE, Glover EI, Wilkinson SB, Prior T,\nTarnopolsky MA, Phillips SM: Ingested protein dose response of muscle\nand albumin protein synthesis after resistance exercise in young men.\nAm J Clin Nutr 2009, 89(1):161–8.\n85.\nYang Y, Breen L, Burd NA, Hector AJ, Churchward-Venne TA, Josse AR,\nTarnopolsky MA, Phillips SM: Resistance exercise enhances myofibrillar\nprotein synthesis with graded intakes of whey protein in older men.\nBr J Nutr 2012, 108(10):1780–8.\ndoi:10.1186/1550-2783-10-5\nCite this article as: Aragon and Schoenfeld: Nutrient timing revisited: is\nthere a post-exercise anabolic window?."
},
{
"filename": "1550-2783-10-5.pdf",
"pdf_title": "Nutrient timing revisited: is there a post-exercise anabolic window?",
"chunk_id": 93,
"text": "Journal of the International\nSociety of Sports Nutrition 2013 10:5.\nSubmit your next manuscript to BioMed Central\nand take full advantage of: \n• Convenient online submission\n• Thorough peer review\n• No space constraints or color figure charges\n• Immediate publication on acceptance\n• Inclusion in PubMed, CAS, Scopus and Google Scholar\n• Research which is freely available for redistribution\nSubmit your manuscript at \nwww.biomedcentral.com/submit\nAragon and Schoenfeld Journal of the International Society of Sports Nutrition 2013, 10:5\nPage 11 of 11\nhttp://www.jissn.com/content/10/1/5"
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 0,
"text": "Vol.:(0123456789)\nSports Medicine (2022) 52:25–36 \nhttps://doi.org/10.1007/s40279-021-01572-0\nREVIEW ARTICLE\nIs there Evidence for the Suggestion that Fatigue Accumulates \nFollowing Resistance Exercise?\nRyo Kataoka1 · Ecaterina Vasenina1 · William B. Hammert1 · Adam H. Ibrahim1 · Scott J. Dankel2 · \nSamuel L. Buckner1 \nAccepted: 18 September 2021 / Published online: 6 October 2021 \n© The Author(s), under exclusive licence to Springer Nature Switzerland AG 2021\nAbstract\nIt has been suggested that improper post-exercise recovery or improper sequence of training may result in an ‘accumulation’ of \nfatigue. Despite this suggestion, there is a lack of clarity regarding which physiological mechanisms may be proposed to con-\ntribute to fatigue accumulation."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 1,
"text": "The present paper explores the time course of the changes in various fatigue-related measures \nin order to understand how they may accumulate or lessen over time following an exercise bout or in the context of an exercise \nprogram.Regarding peripheral fatigue, the depletion of energy substrates and accumulation of metabolic byproducts has been \ndemonstrated to occur following an acute bout of resistance training; however, peripheral accumulation and depletion appear \nunlikely candidates to accumulate over time. A number of mechanisms may contribute to the development of central fatigue, \npostulating the need for prolonged periods of recovery; however, a time course is difficult to determine and is dependent on \nwhich measurement is examined."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 2,
"text": "In addition, it has not been demonstrated that central fatigue measures accumulate over time.\nA potential candidate that may be interpreted as accumulated fatigue is muscle damage, which shares similar characteristics \n(i.e., prolonged strength loss). Due to the delayed appearance of muscle damage, it may be interpreted as accumulated fatigue. \nOverall, evidence for the presence of fatigue accumulation with resistance training is equivocal, making it difficult to draw \nthe conclusion that fatigue accumulates. Considerable work remains as to whether fatigue can accumulate over time. Future \nstudies are warranted to elucidate potential mechanisms underlying the concept of fatigue accumulation.\n *\t Samuel L."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 3,
"text": "Buckner \n\t\[email protected]\n1\t\nUSF Muscle Lab, Exercise Science Program, University \nof South Florida, 4202 E.Fowler Ave."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 4,
"text": "PED 214, Tampa, \nFL 33620‑8600, USA\n2\t\nExercise Physiology Laboratory, Department of Health \nand Exercise Science, Rowan University, Glassboro, NJ, \nUSA\nKey Points \nThe concept of long-term fatigue accumulation has \nappeared repeatedly in the literature without clear \nelucidation of what is accumulating and how/why this is \noccurring.\nDue to the delayed appearance of muscle damage, it may \nbe interpreted as accumulated fatigue.\nInsufficient evidence exists on the presence of fatigue \naccumulation following resistance training, and future \nstudies are warranted to elucidate potential mechanisms \nunderlying the concept of fatigue accumulation.\n1 Introduction\nFatigue is a complex and multifactorial phenomenon and \nmuch is still unknown about why an individual becomes \nfatigued under various exercise conditions [1]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 5,
"text": "Research on \nresistance training is no exception, as mechanisms underly-\ning fatigue following resistance exercise have not been fully \ndelineated [2].While a number of definitions of fatigue \nhave been proposed [1, 3–5], a common tenet indicates that \nfatigue is the failure to maintain the required or expected \nforce-generating capacity in response to voluntary effort. \nDuring resistance exercise, the extent of fatigue may be \ndependent on the level of effort [6], type of exercise selec-\ntion [7], degree of active muscle mass [8], or volume of \ntraining [9]. Taking into consideration other variables such \nas sleep [10] and stress [11], the rate of recovery may dic-\ntate the readiness for the subsequent workout."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 6,
"text": "Although \nless recovery time between each resistance training ses-\nsion (i.e., < 24 h between sessions vs. < 48–72 h between \nsessions) may not necessarily cause negative outcomes in \nmuscle growth and strength within a short period of time \n(i.e., 12 weeks) [12], it has been suggested that improper \n26\n\t\nR. Kataoka et al.\npost-exercise recovery or sequence of training may result \nin an increase in accumulated fatigue [13, 14].\nThe concept of long-term fatigue accumulation has \nappeared repeatedly in the literature without clear eluci-\ndation of what is accumulating and how/why this is occur-\nring [13–19].Fatigue accumulation refers to the fatigue \nthat summates over repeated bouts of training that is \nbelieved to be additive to pre-existing fatigue."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 7,
"text": "Regardless \nof the lack of clarity on physiological aspects, the idea \nhas been explained conceptually using the fitness-fatigue \nmodel originally proposed by Banister et al.[20]. This \nmodel is postulated as a way of explaining the interac-\ntion between two after-effects—fitness and fatigue—that \nmay result from training. Fitness after-effect causes a posi-\ntive physiological response that increases performance, \nwhereas fatigue after-effect causes a negative physiologi-\ncal response that adversely influences performance. The \nfitness gain resulting from training is suggested to be \nmoderate in magnitude but long-lasting (i.e., increases \nin muscle strength), while the fatigue effect is large in \nmagnitude with a brief duration (i.e., reduction in force-\ngenerating capacity) [14, 21]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 8,
"text": "Consequently, the differ-\nence between these two antagonist effects is believed to \ndescribe performance and state of preparedness (prepar-\nedness = fitness − fatigue).Based on the assumption that \nfatigue would accumulate over the course of training [22], \nthe concept is often reflected in the training structure (i.e., \nmesocycle) by creating a discrete period of deload (i.e., \nreduction in training volume and/or load). In addition, a \ntapering strategy is often structured in training to create \na period of reduced training volume and/or load prior to \na competition to express an athlete’s current level of fit-\nness by dissipating fatigue [18, 23, 24]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 9,
"text": "Mujika and Padilla \nhave proposed that athletes who undergo tapering should \nachieve the expected improved performance level once \naccumulated fatigue fades away [23].Of note, an increase \nin the testosterone/cortisol ratio during the taper has been \nsuggested as one of the indices of enhanced recovery and \nelimination of accumulated fatigue [23, 25]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 10,
"text": "However, the \nendocrine responses to resistance training remain unclear \ndue to the variability of the measurement results [26, 27].\nWhile several mathematical models have been proposed \nto quantify the training and performance relationship [28, \n29], the commonly used fitness-fatigue equation presents \nthat (Eq. 1) [30, 31]:\nwhere p(t) is the performance at time t; p (0) is the ini-\ntial performance level; k1 and k2 are the fitness and fatigue \nmagnitude factors, respectively (i.e., how the training load \nimpacts the fitness and fatigue effect on performance); τ1 and \n(1)\nP(t) = p(0) + k1\nt−1\n∑\ns=0\ne\n−t−s\nτ1 ⋅w(s) −k2\nt−1\n∑\ns=0\ne\n−t−s\nτ2 ⋅w(s),\nτ2 are the fitness and fatigue decay time constant, respec-\ntively; and w is the known training load per week (or day) \nfrom the first week of training to the week (or day) preceding \nthe performance."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 11,
"text": "These parameters are interpreted as indi-\nvidual response profiles, and the mathematical model may \npredict the effects of training on physical capability [30, 32].\nFurthermore, the model suggests that fatigue has a \ncumulative effect, and when fatigue accumulates to the \npoint where fatigue after-effects significantly exceed fit-\nness after-effects (i.e., depletion of the individual’s adap-\ntive abilities), overtraining occurs [14].Although the \nmodel may conceptually give some insights, the criticism \nhas been made in regard to the discrepancies between the \npredicted and measured time course of physiological adap-\ntations [32]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 12,
"text": "Thus, it seems that there is a gap between \nthe model and the underlying physiology, certainly with \nregard to the physiological aspects of fatigue accumulation \n(i.e., what is accumulating and how/why is this occurring).\nCurrently, the majority of investigations on fatigue or over-\ntraining have been conducted in aerobic-oriented activi-\nties [33–36]. Furthermore, the mechanisms that underlie \novertraining in resistance exercise largely remain uncertain \n[17], and further investigation on this mode of training is \nwarranted."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 13,
"text": "Therefore, the purpose of this review was to \nevaluate the time course of the changes in various fatigue \nmeasures in response to resistance exercise with an aim \nto elucidate some of the potential mechanisms that may \ncontribute to accumulating fatigue in resistance training.\n2 \u0007Types of Fatigue\nOne of the most well-accepted models for explaining the \ncauses of neuromuscular fatigue involves the concept of \ntask dependency.The task dependency model of muscle \nfatigue implies that the cause of the fatigue is dependent \non characteristics of the exercise that is being performed, \nmeaning that dominant fatigue-inducing mechanisms \ninvolved in limiting performance may differ in various \nconditions [37]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 14,
"text": "Although the specificity of the impair-\nments that contribute to the development of muscle fatigue \n(i.e., contraction mode, muscles involved, type of exer-\ncise) [38] and the approaches to study fatigue (i.e., muscle \nin vivo, isolated muscle, isolated single fiber) [39] would \nmake a causal mechanism of muscle fatigue difficult to \ndecipher, it has been suggested that the mechanisms under-\nlying fatigue can be of central or peripheral origin [40].\nIn essence, central fatigue occurs proximal to the neuro-\nmuscular junction (i.e., within the motor neurons and cen-\ntral nervous system), whereas peripheral fatigue includes \nthe neuromuscular junction and muscle fibers themselves \n[39, 41, 42]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 15,
"text": "As proposed in the task dependency model, \nthe cause of fatigue is dictated by the characteristics of \n27\nFatigue Accumulation with Training\nthe exercise task that is being performed.For example, \nperipheral fatigue contributes relatively more to maximum \nvoluntary contraction (MVC) reduction during short, high-\nintensity exercise, and central fatigue contributes relatively \nmore during longer duration, moderate-intensity exercise \n[40]. In resistance training, a different acute neuromus-\ncular fatigue profile was observed between a maximal \nstrength loading protocol (15 sets of 1 repetition maxi-\nmum) and a hypertrophic loading protocol (5 sets of 10 \nrepetition maximum) [43]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 16,
"text": "The results indicated that the \nhypertrophic loading protocol resulted in greater losses in \npost-loading maximum isometric force accompanied by \nreduced neuromuscular efficiency (force/electromyography \n[EMG] amplitude), reduced median frequency, and main-\ntained EMG amplitude, which was related to the greater \ndegree of peripheral fatigue [43].On the other hand, a \nmaximal strength loading protocol led to decreased con-\ncentric and isometric force in conjunction with reduced \nEMG amplitude and maintained median frequency [43]. \nBased on the lack of change in median frequency, the \nauthors speculated that the same motor units were active \nthroughout the exercise protocol."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 17,
"text": "Furthermore, when con-\nsidering the decrease in concentric and eccentric EMG \namplitudes, the authors suggested that a reduction in fir-\ning frequency may occur as a consequence of maximal \nstrength loading.The difference in the degree of peripheral \nfatigue during these loadings may imply that there were \ndifferent neuromuscular responses between conditions \n[44]. Within the scope of complexities that cause fatigue, \nsubsequent sections will discuss the potential mechanisms \nof neuromuscular fatigue to present knowledge of the \nperipheral and central factors of muscle fatigue that are \nrelated to resistance exercise."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 18,
"text": "In addition, the time course \nof the changes in fatigue phenomenon will be evaluated to \nhelp determine whether fatigue ‘accumulates’ over time.\n3 \u0007Peripheral Fatigue\nPotential sites of peripheral fatigue occur in the peripheral \nnerve, neuromuscular junction, muscle cell membrane, \ncalcium release machinery, and sliding filaments [41, 42].\nWithin these structures, perturbations of neuromuscular \ntransmission, propagation of the muscle action potential, \nexcitation–contraction coupling, and contractile mecha-\nnisms correspond to the decline in tension development [39, \n41, 45]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 19,
"text": "In regard to the mechanisms underlying peripheral \nfatigue, it has been proposed that fatigue could be due to \nthe depletion of energy substrates or to the accumulation of \nmetabolites [42].\n3.1 \u0007Depletion Hypothesis\nThe depletion or exhaustion hypothesis largely involves \nthe depletion of energy substrates: phosphagens (adeno-\nsine triphosphate [ATP] and phosphocreatine) and skeletal \nmuscle glycogen [42].In the broad sense, fatigue can be \nviewed as the net balance between the ATP utilization of \nmuscle cells and their ATP-resynthesizing capacity. Since \nthere is a limited supply of readily available intramuscular \nATP stores, a sustained contractile activity is hindered for an \nextended period of time [46]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 20,
"text": "Thus, to prevent muscle fibers \nfrom exhausting their ATP stores, other metabolic pathways, \nsubstrate-level phosphorylation (or anaerobic) and oxida-\ntive phosphorylation (aerobic), must be activated to produce \nATP.ATP resynthesis that is predominantly involved in \nintense anaerobic exercise includes the breakdown of phos-\nphocreatine and glycogen. These ATP-generating pathways \nhave a greater rate of ATP production with a smaller capac-\nity (total ATP produced) compared with aerobic pathways \n[46]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 21,
"text": "Although it is less studied relative to aerobic and other \nanaerobic activities, it has been demonstrated that deple-\ntion of muscle phosphocreatine and glycogen plays a role, \nin some part, in inducing fatigue during resistance exercise \n[47, 48].\nPhosphocreatine is the high-energy phosphagen that pro-\nvides the immediate energy in the initial stages of intense \nexercise by donating its phosphate molecule to adenosine \ndiphosphate to resynthesize ATP [49].During resistance \nexercise, it has been reported that the concentration of \nphosphocreatine is significantly depleted at the point of \nfatigue [48]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 22,
"text": "For instance, when resistance-trained individu-\nals performed either one or three sets of a biceps exercise \nto failure at 80% of one-repetition maximum (1RM), the \nphosphocreatine concentration was lower by a mean value \nof 62% in the 1-set group and 50% in 3-sets group [48].The \nfact that performing 3 sets did not lead to greater deple-\ntion of phosphocreatine indicated that the 3 min rest period \nbetween sets was long enough to restore phosphocreatine. \nIn line with this finding, sustaining isometric contraction \nat 66% of MVC until force declined to approximately 50% \nof MVC resulted in a rapid recovery of phosphocreatine \nresynthesis [50]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 23,
"text": "It was reported that approximately 67% of \nphosphocreatine was restored following 2 min of recovery \nand approximately 84% of phosphocreatine was recovered \nafter 4 min of recovery, demonstrating that the majority of \nresynthesis completed immediately after the exercise [50].\nSimultaneously, as the stores of available phospho-\ncreatine deplete, the rate of ATP regeneration from the \nbreakdown of glycogen will be augmented.Skeletal mus-\ncle glycogen is the major readily available energy source \nthat plays a role in muscular contractile activity, demon-\nstrated by the inability to sustain a high-intensity exercise \nwhen glycogen stores are depleted [51]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 24,
"text": "Glycogen is also \n28\n\t\nR. Kataoka et al.\ndifferently distributed within a muscle and is located in the \nsubsarcolemmal region, intermyofibril, and intramyofibril, \nwith possible distinct functions [52].It has been suggested \nthat glycogen located between the myofibrils close to the \nlongitudinal sarcoplasmic reticulum (intermyofibrillar gly-\ncogen) powers the release of sarcoplasmic stored calcium \n(Ca2+) and activates tropomyosin binding sites, whereas \nthe glycogen located inside the myofibrils (intramyofibril-\nlar glycogen) is preferably depleted during high-intensity \nexercise and plays a role in excitability and/or sarcoplasmic \nreticulum Ca2+ release properties [53, 54]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 25,
"text": "It is generally \naccepted that impaired sarcoplasmic reticulum Ca2+ release \nis a major factor in fatigue after performing exercise due to \ndisruptions of the excitation–contraction coupling process \n[39].Furthermore, one of the relevant potential mechanisms \ninvolving a glycogenolytic complex is associated with the \nsarcoplasmic reticulum. This was portrayed in the work of \nØrtenblad et al., who reported that the depletion of glyco-\ngen during exhausting exercise was associated with impaired \nmuscle ability to release sarcoplasmic reticulum Ca2+ [55]. \nWhile the reduction in muscle glycogen may be dictated by \nthe duration, intensity, and volume of performed exercise, \na typical resistance exercise bout has been shown to reduce \nglycogen levels by approximately 25–40% [47, 48, 56–58]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 26,
"text": "For instance, Hokken et al.reported that muscle glycogen \ndecreased by 38% when 10 male weightlifters performed \nresistance exercises consisting of four sets of five repetitions \n(4 × 5) at 75% of 1RM back squats, 4 × 5 at 75% of 1RM \ndeadlifts, and 4 × 12 at 65% of 1RM rear foot elevated squats \n[57]. Although skeletal muscle glycogen can be resynthe-\nsized with no calorie/carbohydrate (CHO) intake during the \npost-workout period [59], immediate provision of CHO to \nthe muscle cell is recommended to initiate effective refueling \nas glycogen depletion provides a strong drive for its own \nenhanced resynthesis rates during the early phase (0–4 h) \nafter exercise [60]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 27,
"text": "When 1.5 g CHO/kg body weight was \ningested immediately after and 1 h after the resistance exer-\ncise, the muscle glycogen content was restored to 91% of the \npre-exercise level following 6 h of training bout [56].Similar \nresults were reported by Roy and Tarnopolsky in which the \nrate of muscle glycogen synthesis was significantly higher \nat a dose of 1 g CHO/kg body weight over the first 4 h of \nthe recovery period compared with a placebo group [58]. \nThe glycogen resynthesis and degradation rates following \nresistance exercise may range from 1.9 to 11.1 mmol/kg/h \nand 40.6 to 46.9 mmol/kg wet weight, respectively [56, 59]. \nA complete glycogen restoration might occur within 4–5 h \nif glycogen depletion is only around 40 mmol/kg wet weight \nand sufficient CHO is provided [61]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 28,
"text": "If glycogen depletion \nis 150 mmol/kg wet weight following resistance training \n[57], a complete glycogen restoration might take up to 24 h, \nwith the maximal glycogen resynthesis rates occurring after \nexercise (10 mmol/kg/h) for 4 h and a mean glycogen storage \nrate of 4–6 mmol/kg/h [60, 61].Taken together, the con-\nsideration of the time course of glycogen resynthesis may \nbe particularly important for an individual who undertakes \nmultiple training sessions within the same day (i.e., < 12 h \nrecovery from the first session). To summarize, resistance \nexercise predominantly involves the breakdown of muscle \nphosphocreatine and glycogen to sustain ATP resynthesis."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 29,
"text": "The depletion of phosphocreatine and glycogen plays a role \nin inducing fatigue during resistance exercise, yet the time \ncourse of depletion appears to be short-lived.For muscle \nphosphocreatine, the majority of resynthesis occurs immedi-\nately after the completion of exercise. Similarly, the greater \npart of the recovery of glycogen storage takes place within \na 24-h period.\n3.2 \u0007Accumulation Hypothesis\nThe accumulation hypothesis relates to the build-up of a \nnumber of metabolites within muscle fibers [42]. Although \nnot exhaustive, two end products of anaerobic metabo-\nlism, hydrogen ion (H+) and inorganic phosphate (Pi), have \nreceived the most attention in this regard [62–65]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 30,
"text": "In the \ncontext of the accumulation hypothesis, if fatigue accumu-\nlates in response to resistance exercise, potential scenarios \nwould be that either the exercise-induced metabolic byprod-\nucts accumulate acutely but dissipate shortly after training, \nor the exercise-induced metabolic byproducts accumulate \nacutely and also exacerbate over time (prolonged accumu-\nlation of metabolic byproducts).Indeed, if the latter case \nis supported, it may serve as a partial explanation for the \npurported fatigue accumulation that may cause prolonged \nimpairments in muscular function. Intense muscular contrac-\ntion creates an increased intramuscular pressure condition \nthat causes a partial occlusion of the blood flow [66, 67]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 31,
"text": "Accordingly, impairment of oxygen availability may result \nin a more rapid accumulation of metabolites and interference \nin contractile function (i.e., cross-bridge cycling) [68, 69].\nWhen considering the major potential sites of peripheral \nfatigue, including sarcolemma excitability, excitation–con-\ntraction coupling, contractile mechanisms, metabolic energy \nsupply, and metabolic accumulation, a diminished contrac-\ntile function corresponding to the decline in tension develop-\nment may occur if any of these sites are disrupted by intense \nmuscular contractions [70]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 32,
"text": "Muscle contractions depend on \nelectrical excitation of the muscle fibers in such a way that \nneuromuscular transmission initiates an action potential \nand propagates along the sarcolemma, leading each action \npotential to an efflux of potassium (K+) (i.e., an increase in \nextracellular K+) [39, 71].As such, alternation in excitabil-\nity at the sarcolemma might be the site of fatigue due to the \ninability to maintain electrical gradients (sodium [Na+] and \nK+) during repeated stimulation [39]. When K+ channels \nopen up due to a drop in ATP concentration, K+ floods out \n29\nFatigue Accumulation with Training\nand causes an extracellular K+ accumulation and depolarizes \nthe cell membrane, which in turn inactivates the Na+ chan-\nnel and reduces membrane excitability [72, 73]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 33,
"text": "This may \nreduce the action potential of the T-tubules and limit Ca2+ \nrelease from the sarcoplasmic reticulum [39, 45].However, \nunder normoxic conditions, the K+ channels do not seem \nto contribute significantly to the decrease in force during \nfatigue [73].\nOther potential sites of peripheral fatigue include the \ncross-bridge’s ability to ‘cycle’. The cross-bridge cycle is \ninitiated with a sequence of events leading to the release of \nCa2+ from the sarcoplasmic reticulum [74]. Thus, at the cel-\nlular level, force production may depend on (1) the concen-\ntration of Ca2+ surrounding the myofilaments; (2) the Ca2+ \nsensitivity of the myofilaments; and (3) the maximum Ca2+ \nactivated force (force produced by the cross-bridge) [4]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 34,
"text": "In \nthe case of fatigue associated with H+, accumulation of H+ \nresulting from ATP catabolism and glycolysis has shown a \ncorrelation between the extent of acidosis (increase in H+) \nand impairment in contractility [63].Specifically, acidosis \ncaused by elevated H+ (reduced intracellular pH) has been \nproposed to induce fatigue by suppressing myofibrillar Ca2+ \nsensitivity [75]. Furthermore, the elevated H+ reduces the \naffinity of the binding sites on troponin C [76], and indirectly \nimpairs contractile function by inhibiting the key glycogeno-\nlytic enzyme activities such as phosphorylase [51]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 35,
"text": "However, \nthe role of H+ in fatigue is the current topic of debate as to \nwhether H+ plays a central role in skeletal muscle fatigue \n[77, 78] since the effect of acidosis on reduced maximum \nshortening velocity of mammalian muscle has been shown \nto be small at physiological temperature (i.e., 30 °C) [79].\nThe time course of changes in the accumulation of H+ is also \nacute in nature, as Degroot et al. reported that the clearance \nof H+ was mostly completed in the first 15 min following a \nmaximal isometric foot plantar flexion sustained for 4 min \n[64]. The authors further noted the dissociation between \nchanges in pH and MVC at the onset of both exercise and \nrecovery, suggesting that H+ might not be a primary regula-\ntor of muscle fatigue [64]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 36,
"text": "In addition, resistance training \nappears to improve muscle H+ regulatory capacity over time.\nIt was found that bodybuilders who performed static hand-\ngrip exercise at 30% of MVC had significantly less H+ accu-\nmulation (attenuated pH response) compared with untrained \nindividuals [80]. Taken together, these findings suggest that \nintracellular accumulation of H+ per se may not be a major \ncontributor to muscle fatigue.\nBy the same token, during high-intensity exercise, the \nconcentration of Pi increases due to the breakdown of phos-\nphocreatine [63]. This can occur rapidly with maximum acti-\nvation, and Pi accumulation contributes to the changes in \ncross-bridge behavior."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 37,
"text": "According to the current cross-bridge \naction model, Pi is released in the transition from a weakly \nbound (low-force) state to a strongly attached (high-force) \nstate at the actin-myosin binding sites.This indicates that the \ntransition to the high-force cross-bridge states is hindered \nby increased Pi, and force production would decrease as a \nconsequence of fewer cross-bridges in high-force states [74, \n81]. Furthermore, the rise in Pi induces fatigue by acting \non sarcoplasmic reticulum Ca2+ handling. The amount of \nCa2+ released from the sarcoplasmic reticulum is reduced \nwhen Pi diffuses from the myoplasm into the sarcoplas-\nmic reticulum through a Pi permeable channel and binds \nto Ca2+ to form calcium phosphate (CaPi) [4, 69]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 38,
"text": "Similar \nto the discussion on H+, the time course of recovery from \naccumulated Pi completes quickly.To illustrate, Baker et al. \ncompared two exercise protocols that produced similar lev-\nels of moderate fatigue, to examine the role of metabolic \nand non-metabolic factors [65]. The short-duration exer-\ncise (SDE) group consisted of 2 min of sustained MVC of \nthe ankle dorsiflexor muscles with blood flow restriction \n(anaerobic exercise), and the long-duration exercise (LDE) \ngroup performed 15–20 min of intermittent ankle dorsiflex-\nion exercise without applying blood flow restriction (aerobic \nexercise)."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 39,
"text": "The major finding of the study was that for SDE, \nfatigue correlated with increased inorganic phosphate, and, \nimportantly, both force and inorganic phosphate recovered \nwithin 5 min following exercise.For LDE, recovery of \nforce took over 15 min following exercise, but the recovery \nof inorganic phosphate was not slowed (recovered within \n5 min). Thus, the results of the study indicated that fatigue \ncaused by short-duration anaerobic exercise might be more \ndue to a metabolic inhibition of the contraction, whereas \nthe fatigue caused from long-duration aerobic exercise may \ninvolve a contribution from non-metabolic factors, such as \nan impaired excitation–contraction coupling [65]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 40,
"text": "In closing, \nthe data on the accumulation hypotheses suggest that the \nbuild-up of two end products of anaerobic metabolism, H+ \nand Pi, may only last a short period of time (i.e., < 1 h), cor-\nresponding to acute fatigue within a single training session.\n4 \u0007Central Mechanisms of Fatigue\nExercise-induced reductions in maximal voluntary force \ncannot be solely explained by the mechanisms related to \nperipheral fatigue.This is illustrated by the coexistence of \ncentral and peripheral fatigue during resistance exercise [82, \n83]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 41,
"text": "For example, when the magnitude of both central and \nperipheral fatigue was measured following 10 sets of 5 rep-\netitions of the high bar back squat at 80% of 1RM, the reduc-\ntion in voluntary activation (indicative of central fatigue) \nand twitch force (indicative of peripheral fatigue) persisted, \nwith a faster recovery of central compared with peripheral \nfatigue [83].Thus, part of exercise-induced fatigue is related \nto modifications within the central aspects. Any breakdown \nin muscular activation within the motor neurons and central \n30\n\t\nR. Kataoka et al.\nnervous system is generally considered central, and central \nfatigue is the degradation of the muscle voluntary activation \nattributed to a decline in motoneuronal output [84]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 42,
"text": "A num-\nber of mechanisms may contribute to the development of \ncentral fatigue, such as inhibition of motoneuron excitability \nby afferent feedback from the muscle (i.e., groups III and IV \nmuscle afferents), a decline in motor neuron firing rate, and \na reduction in the number of motor units recruitment [85, \n86].Notably, peripheral factors are also implicated in central \nfatigue. During muscle contraction, the group III and IV \nafferent nerve fibers contribute to motor command and sense \nboth mechanical and metabolic stimuli, respectively [87]. \nAccordingly, information about contractile events at the \nperiphery is delivered to the central nervous system, lead-\ning to altered efferent output."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 43,
"text": "Of note, release of cytokines, \nespecially interleukin (IL)-6, has been suggested to initiate \nafferent signals to the brain during exercise, and may con-\ntribute to feelings of fatigue and decreased efferent drive to \nthe muscles [88].Ultimately, a feedback loop from group III \nand IV nerve fibers to the central nervous system potentially \nleads to (1) a decrease in the firing frequency of the motor \nneuron; (2) an inhibition or facilitation of the motor neuron; \nand/or (3) an inhibition of the motor cortex neuron [41]. \nThe extent of central fatigue that appears after resistance \nexercise may be dictated by factors such as the type of exer-\ncise [7] and intensity of the load [89]. For instance, Yoon \net al."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 44,
"text": "demonstrated that a low-force contraction using 20% of \nMVC induced greater central fatigue than a high-force con-\ntraction using 80% of MVC for both men and women when \nexercising to task failure [89].The authors suggested that \nthe difference in voluntary activation likely resulted from \na reduced descending drive and excitability of the motor \nneuron pool at spinal sources for the low-force contraction. \nThe finding that low-load training elicited greater central \nfatigue than a high-load condition was also illustrated by \nFarrow et al., who compared the fatigue responses to low- \nand high-load dynamic knee extension exercise (40% and \n80% MVC, respectively) to momentary failure in both an \nexercised and non-exercised limb [90]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 45,
"text": "It was demonstrated \nthat low-load exercise induced greater fatigue in both exer-\ncised and non-exercised limbs compared with the high-load \ngroup.A presence of greater fatigue found in the non-exer-\ncised leg indicates that central mechanisms predominately \nmediated the exercise-induced fatigue produced by low-load \nexercise. The authors suggested that performing low-load \ntraining accompanied with a longer time under load likely \nresulted in greater acto-myosin cross-bridge cycling and a \ngreater accumulation of metabolites, leading to a greater \ninfluence of group III/IV afferent motor unit firing rates and \nthe need for greater central motor command [90].\nCentral fatigue can be quantified as voluntary activation, \nas estimated using twitch interpolation during an MVC [91]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 46,
"text": "In essence, the additional force elicited by supramaximal \nelectrical stimulation is delivered to a nerve or muscle during \na voluntary contraction, and, correspondingly, an increase in \nthe amplitude of the interpolated twitch during maximal efforts \nis established as evidence of decreasing voluntary drive that is \ndemonstrative of central fatigue [92].Transcranial magnetic \nstimulation (TMS) can also investigate the human motor cor-\ntex by measuring corticospinal excitability with motor evoked \npotentials (MEPs), which are used to evaluate the existence of \ncentral fatigue [82]. Here, an important consideration is the \ndiscrepancy in the time course of central fatigue with different \ntypes of measurement. For example, Latella et al."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 47,
"text": "conducted \nan acute training study where participants completed a single \nsession of heavy strength training of the biceps curl (5 sets \nof 3 repetitions maximum).Acute changes in corticospinal \nexcitability were measured, and MEP response from TMS \nshowed an immediate reduction in corticospinal excitability, \nwhich returned to baseline in 30 min [93]. While studies have \ndemonstrated that the changes in cortical excitability may \nnot necessarily be the direct cause of central fatigue [94], the \ndevelopment of central fatigue is accompanied by changes in \nthe excitability of the motor cortex [84]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 48,
"text": "Conversely, unlike the \nreduction in corticospinal excitability which returned to base-\nline within 1 h, a reduction in voluntary activation persisted \nfor 48 h when a heavy resistance exercise session of the back \nsquat (10 sets of 5 repetitions at 80% of 1RM) was performed \n[83].Prasartwuth et al. also noted that voluntary activation \nwas impaired for more than 24 h after eccentric exercise when \nmeasured with motor nerve stimulation, but when assessed \nwith TMS, there was only a trend toward a decline in vol-\nuntary activation immediately after eccentric exercise [95]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 49,
"text": "The authors posited that reduced voluntary activation seemed \nto contribute to the force loss in the first 24 h after eccentric \nexercise, and this may be attributed to inhibition in the motor \ncortex and/or the motor neurons.Besides the limitations of \nmeasurement [92], these results illustrate that the discrepan-\ncies of time course changes of central fatigue may in part be \nexplained by the methodologies employed to measure central \nfatigue. As such, different types of measurements provide var-\nied information about the limits of voluntary drive to mus-\ncles, and the postulate that central fatigue requires prolonged \nrecovery may be an oversimplification. Furthermore, the time \ncourse in the recovery of central fatigue may be positively \nmodified in the long-term."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 50,
"text": "When examined with an isoki-\nnetic dynamometer, it has been demonstrated that a repeated \nbout of eccentric training elicited a faster recovery period of \nreduced voluntary activation compared with the initial bout of \neccentric exercise [96].The authors noted a modification in \nneural drive (i.e., motor corticospinal drive) and an attenuated \ndegree of supraspinal fatigue following the repeated bout of \nexercise, suggesting that a protective mechanism following a \nrepeated bout of damaging exercise (repeated bout effect) may \nbe partly explained by a modification in the central nervous \nsystem [96]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 51,
"text": "Nonetheless, the common assessment of central \n31\nFatigue Accumulation with Training\nfatigue only involves a single bout of exercise [82, 83, 89, 97] \nand the question remains as to whether long-term repeated \nexposures of resistance exercise (i.e., in the form of dynamic \nor isotonic exercise) accumulate or exacerbate central fatigue \nover time.Even when individuals experience central fatigue, \na smaller relative contribution of central-mediated fatigue \ncompared with peripheral-mediated fatigue during voluntary \ncontractions also raises concerns regarding the relevance of \ncentral factors in fatigue accumulation."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 52,
"text": "Acutely, a larger part \nof the force reduction seems to be attributed to peripheral fac-\ntors (i.e., 89%) [97], and the reduction in voluntary drive is \ntypically low (i.e., 20%) [98], suggesting a minor influence on \nmuscle fatigue.Furthermore, a model simulating motor unit \nfiring behavior and muscle force during MVC that involves \nonly peripheral factors of muscle fatigue was able to explain \nthe modifications in force behavior commonly attributed to \ncentral fatigue [92]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 53,
"text": "This is not to refute the concept of central \nfatigue but presents data that raise important concerns about \nthe discrepancy in the time course of central fatigue with dif-\nferent types of measurement, and interpretation of central \nfatigue in relation to the contribution of accumulated fatigue.\n5 \u0007Complexity of Interpreting Prolonged \nImpairments of Muscle Function\nThe different states of preparedness within training have \nbeen described as overreaching or overtraining."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 54,
"text": "The former \nis defined as an accumulation of training and/or non-training \nstress resulting in a short-term decrement in performance \ncapacity with or without related symptoms of maladaptation, \nwhereas the latter is defined as an accumulation of training \nand/or non-training stress resulting in a long-term decrement \nin performance capacity with or without related symptoms \nof maladaptation [35].The process of recurrent training \nleading to overreaching and/or overtraining is often viewed \nas a continuum where overreaching is believed to precede \novertraining if high levels of training persist and/or recovery \nis inadequate [99], yet the overtraining continuum may be an \noversimplification [17, 100]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 55,
"text": "Indeed, a substantial amount of \nwork is required to elicit overtraining in a controlled scien-\ntific setting for resistance exercise (i.e., 10 sets of 1 repeti-\ntion at 100% 1RM, every day for 2 weeks) [101–103], and \nmany studies have not followed up the length of recovery \nand time course of changes in physical performance, which \nmakes it challenging to investigate the manifestation of over-\ntraining [27, 104, 105].These findings can also be difficult \nto interpret due to the lack of clear guidelines or established \ndiagnostic tools other than a sustained decrease in perfor-\nmance (i.e., 1RM strength) for overreaching and overtraining \nin resistance exercise [17]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 56,
"text": "In particular, the magnitude of \nthe performance decline required to diagnose overreaching \nor overtraining varies depending on the specific performance \nassessment.Currently, the development of overtraining is \ndetermined when long-term decrements in measured perfor-\nmance (i.e., 1RM strength) are detected relative to nothing \n[103] or a control group with a substantially lower workload \ncompared with the overtraining group (i.e., 10 × 1 at 100% \n1RM, every day for 2 weeks vs. 3 × 5 at 50% 1RM, twice \nweekly for 2 weeks) [101, 102]. Within such studies, it is \nuncertain if the proclaimed state of ‘accumulated’ fatigue \nis a reflection of a single bout of training or repeated expo-\nsures of training over time."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 57,
"text": "The feelings of weakness and \nexhaustion or the decline in performance that individuals \nexperience following the series of training bouts may be per-\nceived as accumulated fatigue, but, without establishing an \nappropriate assessment means, it is also reasonable to claim \nthat a single bout of training is enough to induce fatigue \naccumulation as long as individuals experience prolonged \nimpairments of muscle function.\nOne of the potential candidates that has been interpreted \ninterchangeably as ‘accumulated fatigue’ might be mus-\ncle damage, which also induces prolonged impairments in \nmuscle function (i.e., prolonged strength loss [106])."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 58,
"text": "Mus-\ncle damage is typically caused by predominantly eccentric \nactivity, and prolonged loss of maximal voluntary force \nafter exercise is considered to be one of the most reliable \nindirect measures of muscle damage [107].Damage may \nbe manifested in the sarcolemma, T-tubules, myofibrils, \nand cytoskeletal system [108]. Potential mechanisms that \ncause prolonged reductions in force production include \nionic changes and disruption of calcium homeostasis and \nmechanical stress to the cells [109]. For example, length-\nening contractions causes disruption in the sarcomeres and \nZ-disk streaming [110]. The most prevalent intermediate \nfilament protein in skeletal muscle, desmin, attaches to the \nZ-disk and eccentric contraction involves disruptions to the \nintermediate filament system [111]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 59,
"text": "Desmin is also a target \nof calpain, which is involved in muscle damage following \neccentric contractions, causing an elevation of cytosolic \nCa2+concentrations [112].Consequently, an unregulated \ninflux of Ca2+ leads to a disruption of normal homeostasis \nwithin a muscle cell. Elevations of cytosolic Ca2+ concen-\ntrations seem to be a key event for activation of calpain pro-\nteolytic activity, and calpain promotes muscle damage regu-\nlated by calpastatin [113]. Furthermore, increased activity \nof calpain promotes the activation of neutrophils and mac-\nrophages, leading to reactive oxygen species (ROS) produc-\ntion [111]. Notably, the interaction between neutrophils and \nmacrophages promotes an inflammatory response of mus-\ncle damage."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 60,
"text": "In addition, mechanical stress may damage the \nexcitation–contraction coupling complex by deforming the \nconnection between the T-tubules and the ryanodine recep-\ntors of the sarcoplasmic reticulum (known as junctophilin).\nIt has been demonstrated that the level of junctophilin was \nsignificantly reduced after 50 eccentric contractions, and the \n32\n\t\nR. Kataoka et al.\ndamage to junctophilin was associated with the decline in \nforce [114]. A sustained increase in Ca2+ levels also acti-\nvates phospholipase, particularly phospholipase A2, which \nis the mechanism independent of calpain-mediated prote-\nolysis [112]. Phospholipase produces arachidonic acid and \nlysophospholipids, both of which are known to cause mem-\nbrane structural damage [112]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 61,
"text": "Importantly, these biochemi-\ncal changes of the cell indicate that much of the damage is \ncaused by factors that are secondary to mechanical load-\ning.If mechanical loading predominantly causes membrane \ndamage (i.e., rupture of the membrane) to a greater extent, \nthe increased level of extracellular markers in damaged \nmuscle would appear immediately after exercise. However, \nan indirect marker of muscle damage (i.e., creatine kinase) \ngradually increases over days and may peak a few days (i.e., \n4 days) after resistance exercise is performed [115]. This \ndelayed nature of the appearance of muscle damage may \ntherefore be interpreted as fatigue accumulation.\nNonetheless, the muscle damage also does not seem to \naccumulate following a resistance training program per se \n[116]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 62,
"text": "Twenty untrained women performed two bouts of \neccentric exercise consisting of 70 maximum eccentric con-\ntractions where one 2–3 s action was performed every 15 s.\nSubjects were randomly divided into group A or group B, in \nwhich the second bout was performed on days 5 and 14 follow-\ning the first bout, respectively. The purpose of the study was to \nexamine whether the second bout of exercise in an unrecovered \nstate would exacerbate performance decrements and elevation \nof the muscle damage marker in the blood [116]. Perceived \nsoreness, elbow joint angles, isometric strength, and creatine \nkinase were measured. No measure had returned to initial val-\nues by day 5 post-exercise."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 63,
"text": "Thus, when group A performed \nthe second bout of exercise, the subjects did not fully restore \nmuscle function from the first bout of training.On the con-\ntrary, group B restored measured values to the baseline level \nafter 14 days. The isometric strength of both groups A and \nB significantly decreased following the first bout of training \nand produced only 45% and 40% of initial strength, respec-\ntively. When the second bout was performed, group A had \nregained 66% of initial strength, whereas group B regained \n87% of baseline strength. The peak activity of serum creatine \nkinase was observed on days 4 and 5 but did not become sig-\nnificant until day 3."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 64,
"text": "After performing the second bout, creatine \nkinase activity steadily decreased in group A and reached the \nbaseline level by day 3 post-exercise.Creatine kinase activity \nlevel in group B remained stable following the second bout \nand there was no significant difference between values. The \nresults of the study demonstrated that recovery time following \nthe repeated bout was faster compared with following the ini-\ntial bout whether or not muscle functions were fully restored. \nSimilar results were reported in a follow-up study where a \nbout of eccentric exercise was repeated 3 and 6 days after the \ninitial bout, and no indication of increased muscle damage or \nslowed recovery were documented [117]."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 65,
"text": "Granted, isometric \nstrength measured before eccentric exercise at days 3 and 6 \nwas still lower than the baseline measures but repeated bouts \ndid not exacerbate the strength loss; rather, strength gradually \nrecovered over the 9 days.Although the question remains as \nto whether a repeated bout of exercise with a shorter recov-\nery (i.e., 24 h) would change this relationship, these instances \nindicated that the repeated bout effect was powerful enough to \ncause adaptations in the absence of complete muscle function \nrestoration and further mitigate muscle damage. Overall, what \nis perceived as accumulated fatigue may be more accurately \ninterpreted as muscle damage per se."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 66,
"text": "Whether it is caused by \na single bout or series of training, the overlap area of muscle \ndamage and fatigue causes difficulty when interpreting what \nmay ‘accumulate’ following resistance training."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 67,
"text": "An exhaustive \ncoverage of what is currently known about the physiological \nprocesses of fatigue following resistance exercise is beyond \nthe scope of this paper, but other potential mechanisms that \nmay accumulate or induce prolonged force reduction after \nexercise include psychological changes [11, 102], inflamma-\ntory responses (i.e., leukocytes) [118], neuromodulators (i.e., \ncytokines) [119], and neurotransmitters (i.e., epinephrine) \n[101].\n6 \u0007Conclusion\nDespite the substantial advancement in fatigue research, a \nsignificant gap still remains in understanding the mecha-\nnisms that mediate long-term fatigue symptoms."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 68,
"text": "Regard-\nless of the lack of clarity on physiological mechanisms, it \nhas been suggested that improper post-exercise recovery \nor sequence of training may result in greater accumulated \nfatigue.This idea has been explained conceptually using \nthe fitness-fatigue model. Within the current model, it is \nbelieved that fatigue has a cumulative effect, and when \nfatigue accumulates to the point where fatigue after-effects \nsignificantly exceed fitness after-effects, overtraining \noccurs."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 69,
"text": "However, due to the lack of evidence regarding \nthe exact role of biochemical, physiological, and psy-\nchological markers in overtraining in resistance training, \nquestions remain whether a change in any aspect of acute \nfatigue reflects the contribution to fatigue accumulation \nin the long-term, which is proposed to precede overtrain-\ning.In the current paper, the time course of fatigue was \nevaluated to help determine whether fatigue accumulates \nover time.\nFor peripheral fatigue, both depletion and accumulation \nhypotheses suggest that potential mechanisms of fatigue may \nbe acute (i.e., < 24 h), by which the depletion of these energy \nsubstrates and accumulation of metabolic byproducts cor-\nrespond to fatigue within a single session."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 70,
"text": "A discrepancy in \nthe time course of central fatigue among different types of \n33\nFatigue Accumulation with Training\nmeasurements and a smaller relative contribution of central-\nmediated fatigue compared with peripheral-mediated fatigue \nduring voluntary contractions also raises concerns regarding \nthe role of central factors in fatigue accumulation.A poten-\ntial candidate that may be interpreted as accumulated fatigue \nis muscle damage, which shares similar characteristics with \nfatigue. Overall, considerable work remains to determine \nwhether fatigue accumulates over time."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",
"chunk_id": 71,
"text": "Insufficient evi-\ndence exists on the presence of fatigue accumulation fol-\nlowing resistance training and future studies are warranted \nto elucidate potential mechanisms underlying the concept of \nfatigue accumulation.\nDeclarations \nFunding No external sources of funding were used in the preparation \nof this article.\nConflict of interest Ryo Kataoka, Ecaterina Vasenina, William B.\nHammert, Adam H. Ibrahim, Scott J. Dankel, and Samuel L. Buckner \ndeclare they have no conflicts of interest that are relevant to the con-\ntents of this article.\nAuthorship contributions The first draft of this manuscript was written \nby RK and SLB. All authors commented and modified previous ver-\nsions of the manuscript, and read and approved the final manuscript.\nReferences\n\t 1.\t Enoka RM, Duchateau J."
},
{
"filename": "s40279-021-01572-0.pdf",
"pdf_title": "Is there Evidence for the Suggestion that Fatigue Accumulates Following Resistance Exercise?",