get_all_samozino_profiles returns theoretical and practical Samozino profiles using profile_data returned from the vj_profile and get_samozino_optimal_profile functions

get_all_samozino_profiles(profile_data)

Arguments

profile_data

Data frame returned from vj_profile function

Value

List with two elements: list of profiles and long data frame

References

Samozino, Pierre. ‘A Simple Method for Measuring Lower Limb Force, Velocity and Power Capabilities During Jumping’. In Biomechanics of Training and Testing, edited by Jean-Benoit Morin and Pierre Samozino, 65–96. Cham: Springer International Publishing, 2018. https://doi.org/10.1007/978-3-319-05633-3_4.

———. ‘Optimal Force-Velocity Profile in Ballistic Push-off: Measurement and Relationship with Performance’. In Biomechanics of Training and Testing, edited by Jean-Benoit Morin and Pierre Samozino, 97–119. Cham: Springer International Publishing, 2018. https://doi.org/10.1007/978-3-319-05633-3_5.

Samozino, Pierre, Jean-Benoît Morin, Frédérique Hintzy, and Alain Belli. ‘Jumping Ability: A Theoretical Integrative Approach’. Journal of Theoretical Biology 264, no. 1 (May 2010): 11–18. https://doi.org/10.1016/j.jtbi.2010.01.021.

Samozino, Pierre, Enrico Rejc, Pietro Enrico Di Prampero, Alain Belli, and Jean-Benoît Morin. ‘Optimal Force–Velocity Profile in Ballistic Movements—Altius’: Medicine & Science in Sports & Exercise 44, no. 2 (February 2012): 313–22. https://doi.org/10.1249/MSS.0b013e31822d757a.

Examples

fv_profile <- vj_profile(mass = 75) all_samozino_profiles <- get_all_samozino_profiles(fv_profile) all_samozino_profiles$data_frame
#> # A tibble: 50 x 3 #> profile metric value #> <fct> <chr> <dbl> #> 1 Samozino practical profile F0 2811. #> 2 Samozino practical profile F0_rel 37.5 #> 3 Samozino practical profile V0 2.34 #> 4 Samozino practical profile Pmax 1641. #> 5 Samozino practical profile Pmax_rel 21.9 #> 6 Samozino practical profile Sfv -1204. #> 7 Samozino practical profile Sfv_rel -16.1 #> 8 Samozino practical profile take_off_velocity 2.49 #> 9 Samozino practical profile height 0.315 #> 10 Samozino practical profile optimal_F0 2635. #> # … with 40 more rows