-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathreference.bib
More file actions
1194 lines (1078 loc) · 36.5 KB
/
reference.bib
File metadata and controls
1194 lines (1078 loc) · 36.5 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
@article{cavagna1976sources,
title={The sources of external work in level walking and running.},
author={Cavagna, Giovanni A and Thys, H and Zamboni, A},
journal={The Journal of physiology},
volume={262},
number={3},
pages={639--657},
year={1976},
publisher={Wiley Online Library}
}
@article{bartlett2008changing,
title={Changing the demand on specific muscle groups affects the walk--run transition speed},
author={Bartlett, Jamie L and Kram, Rodger},
journal={Journal of Experimental Biology},
volume={211},
number={8},
pages={1281--1288},
year={2008},
publisher={Company of Biologists}
}
@article{abbott1952physiological,
title={The physiological cost of negative work},
author={Abbott, BC and Bigland, Brenda and Ritchie, JM},
journal={The Journal of physiology},
volume={117},
number={3},
pages={380},
year={1952}
}
@article{rathkey2017people,
title={People choose to run at their optimal speed},
author={Rathkey, Joseph K and Wall-Scheffler, Cara M},
journal={American Journal of Physical Anthropology},
volume={163},
number={1},
pages={85--93},
year={2017},
publisher={Wiley Online Library}
}
@article{hoyt1981gait,
title={Gait and the energetics of locomotion in horses},
author={Hoyt, Donald F and Taylor, C Richard},
journal={Nature},
volume={292},
number={5820},
pages={239--240},
year={1981},
publisher={Nature Publishing Group UK London}
}
@article{collins2001three,
title={A three-dimensional passive-dynamic walking robot with two legs and knees},
author={Collins, Steven H and Wisse, Martijn and Ruina, Andy},
journal={The International Journal of Robotics Research},
volume={20},
number={7},
pages={607--615},
year={2001},
publisher={SAGE Publications}
}
@article{engsberg2006increasing,
title={Increasing ankle strength to improve gait and function in children with cerebral palsy: a pilot study},
author={Engsberg, Jack R and Ross, Sandy A and Collins, David R},
journal={Pediatric Physical Therapy},
volume={18},
number={4},
pages={266--275},
year={2006},
publisher={LWW}
}
@article{kuo2002energetics,
title={Energetics of actively powered locomotion using the simplest walking model},
author={Kuo, Arthur D},
journal={J. Biomech. Eng.},
volume={124},
number={1},
pages={113--120},
year={2002}
}
@article{donelan2002mechanical,
title={Mechanical work for step-to-step transitions is a major determinant of the metabolic cost of human walking},
author={Donelan, J Maxwell and Kram, Rodger and Kuo, Arthur D},
journal={Journal of experimental biology},
volume={205},
number={23},
pages={3717--3727},
year={2002},
publisher={Company of Biologists}
}
@article{steele2013muscle,
title={Muscle contributions to vertical and fore-aft accelerations are altered in subjects with crouch gait},
author={Steele, Katherine M and Seth, Ajay and Hicks, Jennifer L and Schwartz, Michael H and Delp, Scott L},
journal={Gait \& posture},
volume={38},
number={1},
pages={86--91},
year={2013},
publisher={Elsevier}
}
@article{reinbolt2008importance,
title={Importance of preswing rectus femoris activity in stiff-knee gait},
author={Reinbolt, Jeffrey A and Fox, Melanie D and Arnold, Allison S and {\~O}unpuu, Sylvia and Delp, Scott L},
journal={Journal of biomechanics},
volume={41},
number={11},
pages={2362--2369},
year={2008},
publisher={Elsevier}
}
@article{goldberg2004muscles,
title={Muscles that influence knee flexion velocity in double support: implications for stiff-knee gait},
author={Goldberg, Saryn R and Anderson, Frank C and Pandy, Marcus G and Delp, Scott L},
journal={Journal of biomechanics},
volume={37},
number={8},
pages={1189--1196},
year={2004},
publisher={Elsevier}
}
@article{liu2008muscle,
title={Muscle contributions to support and progression over a range of walking speeds},
author={Liu, May Q and Anderson, Frank C and Schwartz, Michael H and Delp, Scott L},
journal={Journal of biomechanics},
volume={41},
number={15},
pages={3243--3252},
year={2008},
publisher={Elsevier}
}
@article{dorn2015predictive,
title={Predictive simulation generates human adaptations during loaded and inclined walking},
author={Dorn, Tim W and Wang, Jack M and Hicks, Jennifer L and Delp, Scott L},
journal={PloS one},
volume={10},
number={4},
pages={e0121407},
year={2015},
publisher={Public Library of Science San Francisco, CA USA}
}
@article{ashby2002role,
title={Role of arm motion in the standing long jump},
author={Ashby, Blake M and Heegaard, Jean H},
journal={Journal of biomechanics},
volume={35},
number={12},
pages={1631--1637},
year={2002},
publisher={Elsevier}
}
@article{silverman2012muscle,
title={Muscle and prosthesis contributions to amputee walking mechanics: a modeling study},
author={Silverman, Anne K and Neptune, Richard R},
journal={Journal of biomechanics},
volume={45},
number={13},
pages={2271--2278},
year={2012},
publisher={Elsevier}
}
@article{delp1990interactive,
title={An interactive graphics-based model of the lower extremity to study orthopaedic surgical procedures},
author={Delp, Scott L and Loan, J Peter and Hoy, Melissa G and Zajac, Felix E and Topp, Eric L and Rosen, Joseph M},
journal={IEEE Transactions on Biomedical engineering},
volume={37},
number={8},
pages={757--767},
year={1990},
publisher={IEEE}
}
@article{saul2015benchmarking,
title={Benchmarking of dynamic simulation predictions in two software platforms using an upper limb musculoskeletal model},
author={Saul, Katherine R and Hu, Xiao and Goehler, Craig M and Vidt, Meghan E and Daly, Melissa and Velisar, Anca and Murray, Wendy M},
journal={Computer methods in biomechanics and biomedical engineering},
volume={18},
number={13},
pages={1445--1458},
year={2015},
publisher={Taylor \& Francis}
}
@article{cazzola2017cervical,
title={Cervical spine injuries: a whole-body musculoskeletal model for the analysis of spinal loading},
author={Cazzola, Dario and Holsgrove, Timothy P and Preatoni, Ezio and Gill, Harinderjit S and Trewartha, Grant},
journal={PloS one},
volume={12},
number={1},
pages={e0169329},
year={2017},
publisher={Public Library of Science San Francisco, CA USA}
}
@article{vasavada1998influence,
title={Influence of muscle morphometry and moment arms on the moment-generating capacity of human neck muscles},
author={Vasavada, Anita N and Li, Siping and Delp, Scott L},
journal={Spine},
volume={23},
number={4},
pages={412--422},
year={1998},
publisher={LWW}
}
@article{zajac1989determining,
title={Determining muscle's force and action in multi-articular movement},
author={Zajac, Felix E and Gordon, Michael E},
journal={Exercise and sport sciences reviews},
volume={17},
number={1},
pages={187--230},
year={1989},
publisher={LWW}
}
@article{zajac1993muscle,
title={Muscle coordination of movement: a perspective},
author={Zajac, Felix E},
journal={Journal of biomechanics},
volume={26},
pages={109--124},
year={1993},
publisher={Elsevier}
}
@article{anderson2006simulation,
title={Simulation of walking},
author={Anderson, FC and Arnold, AS and Pandy, MG and Goldberg, SR and Delp, SL},
journal={Human walking},
pages={195--210},
year={2006},
publisher={Lippincott Williams \& Wilkins}
}
@article{uchida2016stretching,
title={Stretching your energetic budget: how tendon compliance affects the metabolic cost of running},
author={Uchida, Thomas K and Hicks, Jennifer L and Dembia, Christopher L and Delp, Scott L},
journal={PloS one},
volume={11},
number={3},
pages={e0150378},
year={2016},
publisher={Public Library of Science San Francisco, CA USA}
}
@article{domalain2017australopithecus,
title={Was Australopithecus afarensis able to make the Lomekwian stone tools? Towards a realistic biomechanical simulation of hand force capability in fossil hominins and new insights on the role of the fifth digit},
author={Domalain, Mathieu and Bertin, Anne and Daver, Guillaume},
journal={Comptes Rendus Palevol},
volume={16},
number={5-6},
pages={572--584},
year={2017},
publisher={Elsevier}
}
@article{delp2007opensim,
title={OpenSim: open-source software to create and analyze dynamic simulations of movement},
author={Delp, Scott L and Anderson, Frank C and Arnold, Allison S and Loan, Peter and Habib, Ayman and John, Chand T and Guendelman, Eran and Thelen, Darryl G},
journal={IEEE transactions on biomedical engineering},
volume={54},
number={11},
pages={1940--1950},
year={2007},
publisher={IEEE}
}
@article{hicks2015my,
title={Is my model good enough? Best practices for verification and validation of musculoskeletal models and simulations of movement},
author={Hicks, Jennifer L and Uchida, Thomas K and Seth, Ajay and Rajagopal, Apoorva and Delp, Scott L},
journal={Journal of biomechanical engineering},
volume={137},
number={2},
pages={020905},
year={2015},
publisher={American Society of Mechanical Engineers}
}
@article{horita1991body,
title={Body configuration and joint moment analysis during standing long jump in 6-yr-old children and adult males.},
author={Horita, TOMOKI and Kitamura, Kiyokazu and Kohno, Nobuhiro},
journal={Medicine and science in sports and exercise},
volume={23},
number={9},
pages={1068--1072},
year={1991}
}
@article{ong2015simulation,
title={Simulation-based design for wearable robotic systems: an optimization framework for enhancing a standing long jump},
author={Ong, Carmichael F and Hicks, Jennifer L and Delp, Scott L},
journal={IEEE Transactions on Biomedical Engineering},
volume={63},
number={5},
pages={894--903},
year={2015},
publisher={IEEE}
}
@article{fregly2007design,
title={Design of patient-specific gait modifications for knee osteoarthritis rehabilitation},
author={Fregly, Benjamin J and Reinbolt, Jeffrey A and Rooney, Kelly L and Mitchell, Kim H and Chmielewski, Terese L},
journal={IEEE Transactions on Biomedical Engineering},
volume={54},
number={9},
pages={1687--1695},
year={2007},
publisher={IEEE}
}
@article{shull2013six,
title={Six-week gait retraining program reduces knee adduction moment, reduces pain, and improves function for individuals with medial compartment knee osteoarthritis},
author={Shull, Pete B and Silder, Amy and Shultz, Rebecca and Dragoo, Jason L and Besier, Thor F and Delp, Scott L and Cutkosky, Mark R},
journal={Journal of Orthopaedic Research},
volume={31},
number={7},
pages={1020--1025},
year={2013},
publisher={Wiley Online Library}
}
@article{kuo1998least,
title={A least-squares estimation approach to improving the precision of inverse dynamics computations},
author={Kuo, Arthur D},
year={1998}
}
@article{pataky2012gait,
title={Gait recognition: highly unique dynamic plantar pressure patterns among 104 individuals},
author={Pataky, Todd C and Mu, Tingting and Bosch, Kerstin and Rosenbaum, Dieter and Goulermas, John Y},
journal={Journal of The Royal Society Interface},
volume={9},
number={69},
pages={790--800},
year={2012},
publisher={The Royal Society}
}
@article{donnelly2012optimizing,
title={Optimizing whole-body kinematics to minimize valgus knee loading during sidestepping: implications for ACL injury risk},
author={Donnelly, Cyril J and Lloyd, David Gavin and Elliott, Bruce C and Reinbolt, Jeffrey A},
journal={Journal of biomechanics},
volume={45},
number={8},
pages={1491--1497},
year={2012},
publisher={Elsevier}
}
@article{bates2016motion,
title={Motion analysis and the anterior cruciate ligament: classification of injury risk},
author={Bates, Nathaniel A and Hewett, Timothy E},
journal={The journal of knee surgery},
volume={29},
number={02},
pages={117--125},
year={2016},
publisher={Thieme Medical Publishers}
}
@article{thompson2017biomechanical,
title={Biomechanical effects of an injury prevention program in preadolescent female soccer athletes},
author={Thompson, Julie A and Tran, Andrew A and Gatewood, Corey T and Shultz, Rebecca and Silder, Amy and Delp, Scott L and Dragoo, Jason L},
journal={The American journal of sports medicine},
volume={45},
number={2},
pages={294--301},
year={2017},
publisher={SAGE Publications Sage CA: Los Angeles, CA}
}
@article{seth2016biomechanical,
title={A biomechanical model of the scapulothoracic joint to accurately capture scapular kinematics during shoulder movements},
author={Seth, Ajay and Matias, Ricardo and Veloso, Ant{\'o}nio P and Delp, Scott L},
journal={PloS one},
volume={11},
number={1},
pages={e0141028},
year={2016},
publisher={Public Library of Science San Francisco, CA USA}
}
@misc{wright2006numerical,
title={Numerical optimization},
author={Wright, Stephen J},
year={2006}
}
@article{hernandez2015six,
title={Six degree-of-freedom measurements of human mild traumatic brain injury},
author={Hernandez, Fidel and Wu, Lyndia C and Yip, Michael C and Laksari, Kaveh and Hoffman, Andrew R and Lopez, Jaime R and Grant, Gerald A and Kleiven, Svein and Camarillo, David B},
journal={Annals of biomedical engineering},
volume={43},
pages={1918--1934},
year={2015},
publisher={Springer}
}
@article{o2020turning,
title={The turning and barrier course reveals gait parameters for detecting freezing of gait and measuring the efficacy of deep brain stimulation},
author={O’Day, Johanna and Syrkin-Nikolau, Judy and Anidi, Chioma and Kidzinski, Lukasz and Delp, Scott and Bronte-Stewart, Helen},
journal={PLoS One},
volume={15},
number={4},
pages={e0231984},
year={2020},
publisher={Public Library of Science San Francisco, CA USA}
}
@book{thomson1894popular,
title={Popular lectures and addresses},
author={Thomson, William},
volume={2},
year={1894},
publisher={Cambridge University Press}
}
@inproceedings{sherman2013moment,
title={What is a moment arm? Calculating muscle effectiveness in biomechanical models using generalized coordinates},
author={Sherman, Michael A and Seth, Ajay and Delp, Scott L},
booktitle={International design engineering technical conferences and computers and information in engineering conference},
volume={55973},
pages={V07BT10A052},
year={2013},
organization={American Society of Mechanical Engineers}
}
@article{delp1995graphics,
title={A graphics-based software system to develop and analyze models of musculoskeletal structures},
author={Delp, Scott L and Loan, J Peter},
journal={Computers in biology and medicine},
volume={25},
number={1},
pages={21--34},
year={1995},
publisher={Elsevier}
}
@article{buchanan1998muscular,
title={Muscular resistance to varus and valgus loads at the elbow},
author={Buchanan, Thomas S and Delp, Scott L and Solbeck, JA},
year={1998}
}
@article{arnold2006role,
title={The role of estimating muscle-tendon lengths and velocities of the hamstrings in the evaluation and treatment of crouch gait},
author={Arnold, Allison S and Liu, May Q and Schwartz, Michael H and Ounpuu, Sylvia and Delp, Scott L},
journal={Gait \& posture},
volume={23},
number={3},
pages={273--281},
year={2006},
publisher={Elsevier}
}
@article{lee2009built,
title={Built for speed: musculoskeletal structure and sprinting ability},
author={Lee, Sabrina SM and Piazza, Stephen J},
journal={Journal of Experimental Biology},
volume={212},
number={22},
pages={3700--3707},
year={2009},
publisher={Company of Biologists}
}
@article{murray1995variation,
title={Variation of muscle moment arms with elbow and forearm position},
author={Murray, Wendy M and Delp, Scott L and Buchanan, Thomas S},
journal={Journal of biomechanics},
volume={28},
number={5},
pages={513--525},
year={1995},
publisher={Elsevier}
}
@article{an1984determination,
title={Determination of muscle orientations and moment arms.},
author={An, Kai-Nan and Takahashi, K and Harrigan, Timothy Patrick and Chao, EY},
journal={Journal of biomechanical engineering},
volume={106},
number={3},
pages={280--282},
year={1984}
}
@article{blemker2005three,
title={Three-dimensional representation of complex muscle architectures and geometries},
author={Blemker, Silvia S and Delp, Scott L},
journal={Annals of biomedical engineering},
volume={33},
pages={661--673},
year={2005},
publisher={Springer}
}
@article{huxley1957muscle,
title={Muscle structure and theories of contraction},
author={Huxley, Andrew F},
journal={Progress in biophysics and biophysical chemistry},
volume={7},
pages={255--318},
year={1957},
publisher={Elsevier}
}
@article{millard2013flexing,
title={Flexing computational muscle: modeling and simulation of musculotendon dynamics},
author={Millard, Matthew and Uchida, Thomas and Seth, Ajay and Delp, Scott L},
journal={Journal of biomechanical engineering},
volume={135},
number={2},
pages={021005},
year={2013},
publisher={American Society of Mechanical Engineers}
}
@article{wilkie1956mechanical,
title={The mechanical properties of muscle},
author={Wilkie, DR},
journal={British medical bulletin},
volume={12},
number={3},
pages={177--182},
year={1956},
publisher={Oxford University Press}
}
@article{hill1938heat,
title={The heat of shortening and the dynamic constants of muscle},
author={Hill, Archibald Vivian},
journal={Proceedings of the Royal Society of London. Series B-Biological Sciences},
volume={126},
number={843},
pages={136--195},
year={1938},
publisher={The Royal Society London}
}
@article{llewellyn2008minimally,
title={Minimally invasive high-speed imaging of sarcomere contractile dynamics in mice and humans},
author={Llewellyn, Michael E and Barretto, Robert PJ and Delp, Scott L and Schnitzer, Mark J},
journal={Nature},
volume={454},
number={7205},
pages={784--788},
year={2008},
publisher={Nature Publishing Group UK London}
}
@article{lieber1984sarcomere,
title={Sarcomere length determination using laser diffraction. Effect of beam and fiber diameter},
author={Lieber, RICHARD L and Yeh, Yin and Baskin, RONALD J},
journal={Biophysical journal},
volume={45},
number={5},
pages={1007--1016},
year={1984},
publisher={Elsevier}
}
@article{zajac1989muscle,
title={Muscle and tendon: properties, models, scaling, and application to biomechanics and motor control.},
author={Zajac, Felix E},
journal={Critical reviews in biomedical engineering},
volume={17},
number={4},
pages={359--411},
year={1989}
}
@book{lieber2002skeletal,
title={Skeletal muscle structure, function, and plasticity},
author={Lieber, Richard L},
year={2002},
publisher={Lippincott Williams \& Wilkins}
}
@article{llewellyn2010orderly,
title={Orderly recruitment of motor units under optical control in vivo},
author={Llewellyn, Michael E and Thompson, Kimberly R and Deisseroth, Karl and Delp, Scott L},
journal={Nature medicine},
volume={16},
number={10},
pages={1161--1165},
year={2010},
publisher={Nature Publishing Group US New York}
}
@article{gregory2005recruitment,
title={Recruitment patterns in human skeletal muscle during electrical stimulation},
author={Gregory, Chris M and Bickel, C Scott},
journal={Physical therapy},
volume={85},
number={4},
pages={358--364},
year={2005},
publisher={Oxford University Press}
}
@article{henneman1965functional,
title={Functional significance of cell size in spinal motoneurons},
author={Henneman, Elwood and Somjen, George and Carpenter, David O},
journal={Journal of neurophysiology},
volume={28},
number={3},
pages={560--580},
year={1965}
}
@article{gordon1966variation,
title={The variation in isometric tension with sarcomere length in vertebrate muscle fibres},
author={Gordon, Albert M and Huxley, Andrew F and Julian, Fred J},
journal={The Journal of physiology},
volume={184},
number={1},
pages={170--192},
year={1966},
publisher={Wiley Online Library}
}
@article{dorn2012muscular,
title={Muscular strategy shift in human running: dependence of running speed on hip and ankle muscle performance},
author={Dorn, Tim W and Schache, Anthony G and Pandy, Marcus G},
journal={Journal of Experimental Biology},
volume={215},
number={11},
pages={1944--1956},
year={2012},
publisher={Company of Biologists}
}
@article{geyer2006compliant,
title={Compliant leg behaviour explains basic dynamics of walking and running},
author={Geyer, Hartmut and Seyfarth, Andre and Blickhan, Reinhard},
journal={Proceedings of the Royal Society B: Biological Sciences},
volume={273},
number={1603},
pages={2861--2867},
year={2006},
publisher={The Royal Society London}
}
@article{alexander1984walking,
title={Walking and running: Legs and leg movements are subtly adapted to minimize the energy costs of locomotion},
author={Alexander, R McNeill},
journal={American Scientist},
volume={72},
number={4},
pages={348--354},
year={1984},
publisher={JSTOR}
}
@article{kulmala2018running,
title={Running in highly cushioned shoes increases leg stiffness and amplifies impact loading},
author={Kulmala, Juha-Pekka and Kosonen, Jukka and Nurminen, Jussi and Avela, Janne},
journal={Scientific reports},
volume={8},
number={1},
pages={1--7},
year={2018},
publisher={Nature Publishing Group}
}
@article{silder2015running,
title={Running with a load increases leg stiffness},
author={Silder, Amy and Besier, Thor and Delp, Scott L},
journal={Journal of biomechanics},
volume={48},
number={6},
pages={1003--1008},
year={2015},
publisher={Elsevier}
}
@article{farley1993running,
title={Running springs: speed and animal size},
author={Farley, Claire T and Glasheen, James and McMahon, Thomas A},
journal={Journal of experimental Biology},
volume={185},
number={1},
pages={71--86},
year={1993},
publisher={The Company of Biologists Ltd}
}
@article{hoogkamer2018comparison,
title={A comparison of the energetic cost of running in marathon racing shoes},
author={Hoogkamer, Wouter and Kipp, Shalaya and Frank, Jesse H and Farina, Emily M and Luo, Geng and Kram, Rodger},
journal={Sports Medicine},
volume={48},
number={4},
pages={1009--1019},
year={2018},
publisher={Springer}
}
@book{mcmahon1984muscles,
title={Muscles, reflexes, and locomotion},
author={McMahon, Thomas A},
year={1984},
publisher={Princeton University Press}
}
@article{mcmahon1979influence,
title={The influence of track compliance on running},
author={McMahon, Thomas A and Greene, Peter R},
journal={Journal of biomechanics},
volume={12},
number={12},
pages={893--904},
year={1979},
publisher={Elsevier}
}
@article{wingerson1983lion,
title={The lion, the spring and the pendulum},
author={Wingerson, L},
journal={New Scientist},
volume={97},
number={1342},
pages={236--239},
year={1983},
publisher={NEW SCIENTIST PUBL EXPEDITING INC 200 MEACHAM AVE, ELMONT, NY 11003}
}
@inproceedings{raibert1984machines,
title={Machines that walk},
author={Raibert, Marc H and Brown, H Benjamin and Murthy, Seshashayee S},
booktitle={Robotics and Artificial Intelligence},
pages={345--364},
year={1984},
organization={Springer}
}
@article{dawson1977kangaroos,
title={Kangaroos},
author={Dawson, TJ},
journal={Scientific American},
volume={237},
number={2},
pages={78--89},
year={1977},
publisher={JSTOR}
}
@article{yong2014differences,
title={Differences in muscle activity between natural forefoot and rearfoot strikers during running},
author={Yong, Jennifer R and Silder, Amy and Delp, Scott L},
journal={Journal of biomechanics},
volume={47},
number={15},
pages={3593--3597},
year={2014},
publisher={Elsevier}
}
@article{fox2009mechanisms,
title={Mechanisms of improved knee flexion after rectus femoris transfer surgery},
author={Fox, Melanie D and Reinbolt, Jeffrey A and {\~O}unpuu, Sylvia and Delp, Scott L},
journal={Journal of biomechanics},
volume={42},
number={5},
pages={614--619},
year={2009},
publisher={Elsevier}
}
@article{steele2012compressive,
title={Compressive tibiofemoral force during crouch gait},
author={Steele, Katherine M and DeMers, Matthew S and Schwartz, Michael H and Delp, Scott L},
journal={Gait \& posture},
volume={35},
number={4},
pages={556--560},
year={2012},
publisher={Elsevier}
}
@article{rajagopal2016full,
title={Full-body musculoskeletal model for muscle-driven simulation of human gait},
author={Rajagopal, Apoorva and Dembia, Christopher L and DeMers, Matthew S and Delp, Denny D and Hicks, Jennifer L and Delp, Scott L},
journal={IEEE transactions on biomedical engineering},
volume={63},
number={10},
pages={2068--2079},
year={2016},
publisher={IEEE}
}
@article{collins2009dynamic,
title={Dynamic arm swinging in human walking},
author={Collins, Steven H and Adamczyk, Peter G and Kuo, Arthur D},
journal={Proceedings of the Royal Society B: Biological Sciences},
volume={276},
number={1673},
pages={3679--3688},
year={2009},
publisher={The Royal Society}
}
@article{kuo2010dynamic,
title={Dynamic principles of gait and their clinical implications},
author={Kuo, Arthur D and Donelan, J Maxwell},
journal={Physical therapy},
volume={90},
number={2},
pages={157--174},
year={2010},
publisher={Oxford University Press}
}
@article{mcgeer1990passive,
title={Passive dynamic walking},
author={McGeer, Tad},
journal={The international journal of robotics research},
volume={9},
number={2},
pages={62--82},
year={1990},
publisher={Sage Publications Sage CA: Thousand Oaks, CA}
}
@article{martin1992effects,
title={Effects of age and physical activity status on the speed-aerobic demand relationship of walking},
author={Martin, Philip E and Rothstein, Debra E and Larish, Douglas D},
journal={Journal of applied physiology},
volume={73},
number={1},
pages={200--206},
year={1992}
}
@article{browning2006effects,
title={Effects of obesity and sex on the energetic cost and preferred speed of walking},
author={Browning, Raymond C and Baker, Emily A and Herron, Jessica A and Kram, Rodger},
journal={Journal of applied physiology},
volume={100},
number={2},
pages={390--398},
year={2006},
publisher={American Physiological Society}
}
@article{ralston1958energy,
title={Energy-speed relation and optimal speed during level walking},
author={Ralston, Henry J},
journal={Internationale Zeitschrift f{\"u}r Angewandte Physiologie Einschliesslich Arbeitsphysiologie},
volume={17},
number={4},
pages={277--283},
year={1958},
publisher={Springer}
}
@article{mochon1980ballistic,
title={Ballistic walking},
author={Mochon, Simon and McMahon, Thomas A},
journal={Journal of biomechanics},
volume={13},
number={1},
pages={49--57},
year={1980},
publisher={Elsevier}
}
@article{seth2018opensim,
title={OpenSim: Simulating musculoskeletal dynamics and neuromuscular control to study human and animal movement},
author={Seth, Ajay and Hicks, Jennifer L and Uchida, Thomas K and Habib, Ayman and Dembia, Christopher L and Dunne, James J and Ong, Carmichael F and DeMers, Matthew S and Rajagopal, Apoorva and Millard, Matthew and others},
journal={PLoS computational biology},
volume={14},
number={7},
pages={e1006223},
year={2018},
publisher={Public Library of Science San Francisco, CA USA}
}
@article{christophy2012musculoskeletal,
title={A musculoskeletal model for the lumbar spine},
author={Christophy, Miguel and Faruk Senan, Nur Adila and Lotz, Jeffrey C and O’Reilly, Oliver M},
journal={Biomechanics and modeling in mechanobiology},
volume={11},
pages={19--34},
year={2012},
publisher={Springer}
}
@article{demers2017preparatory,
title={Preparatory co-activation of the ankle muscles may prevent ankle inversion injuries},
author={DeMers, Matthew S and Hicks, Jennifer L and Delp, Scott L},
journal={Journal of biomechanics},
volume={52},
pages={17--23},
year={2017},
publisher={Elsevier}
}
@article{homayouni2015modeling,
title={Modeling implantable passive mechanisms for modifying the transmission of forces and movements between muscle and tendons},
author={Homayouni, Taymaz and Underwood, Kelsey N and Beyer, Kamin C and Martin, Elon R and Allan, Christopher H and Balasubramanian, Ravi},
journal={IEEE Transactions on Biomedical Engineering},
volume={62},
number={9},
pages={2208--2214},
year={2015},
publisher={IEEE}
}
@article{rankin2016inferring,
title={Inferring muscle functional roles of the ostrich pelvic limb during walking and running using computer optimization},
author={Rankin, Jeffery W and Rubenson, Jonas and Hutchinson, John R},
journal={Journal of the Royal Society Interface},
volume={13},
number={118},
pages={20160035},
year={2016},
publisher={The Royal Society}
}
@article{jakicic2016effect,
title={Effect of wearable technology combined with a lifestyle intervention on long-term weight loss: the IDEA randomized clinical trial},
author={Jakicic, John M and Davis, Kelliann K and Rogers, Renee J and King, Wendy C and Marcus, Marsha D and Helsel, Diane and Rickman, Amy D and Wahed, Abdus S and Belle, Steven H},
journal={Jama},
volume={316},
number={11},
pages={1161--1171},
year={2016},
publisher={American Medical Association}
}
@article{learning2018learning,
title={Learning to Run Challenge: Synthesizing Physiologically Accurate Motion Using},
author={Learning, Deep Reinforcement},
journal={The NIPS'17 Competition: Building Intelligent Systems},
pages={101},
year={2018},
publisher={Springer}
}
@article{rajagopal2020pre,
title={Pre-operative gastrocnemius lengths in gait predict outcomes following gastrocnemius lengthening surgery in children with cerebral palsy},
author={Rajagopal, Apoorva and Kidzi{\'n}ski, {\L}ukasz and McGlaughlin, Alec S and Hicks, Jennifer L and Delp, Scott L and Schwartz, Michael H},
journal={PLoS One},
volume={15},
number={6},
pages={e0233706},
year={2020},
publisher={Public Library of Science San Francisco, CA USA}
}
@article{halilaj2018machine,
title={Machine learning in human movement biomechanics: Best practices, common pitfalls, and new opportunities},
author={Halilaj, Eni and Rajagopal, Apoorva and Fiterau, Madalina and Hicks, Jennifer L and Hastie, Trevor J and Delp, Scott L},
journal={Journal of biomechanics},
volume={81},
pages={1--11},
year={2018},
publisher={Elsevier}
}
@article{biswas2015sedentary,
title={Sedentary time and its association with risk for disease incidence, mortality, and hospitalization in adults: a systematic review and meta-analysis},
author={Biswas, Aviroop and Oh, Paul I and Faulkner, Guy E and Bajaj, Ravi R and Silver, Michael A and Mitchell, Marc S and Alter, David A},
journal={Annals of internal medicine},
volume={162},
number={2},
pages={123--132},
year={2015},
publisher={American College of Physicians}
}
@incollection{world2010global,
title={Global recommendations on physical activity for health},
author={World Health Organization, t and others},
booktitle={Global recommendations on physical activity for health},
pages={60--60},
year={2010}
}
@article{dwivedi2025digital,
title={Digital Health Market Size, Future Scope, Demands and Projected Industry Growth by 2030},