Description Usage Arguments Value References Examples
make_samozino_profile
generates Samozino profile from squat jump data. When both aerial_time
and
height
are forwarded to the function, only height
is used to estimate mean GRF.
1 2 3 4 5 6 7 8 9 | make_samozino_profile(
bodyweight,
push_off_distance,
external_load,
height,
aerial_time,
gravity_const = 9.81,
plot = TRUE
)
|
bodyweight |
Numeric value |
push_off_distance |
Numeric value |
external_load |
Numeric vector |
height |
Numeric vector |
aerial_time |
Numeric vector |
gravity_const |
Numeric vector. Default 9.81 |
plot |
TRUE/FALSE. Default is TRUE |
List of Samozino profile parameters
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.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | require(tidyverse)
data("testing_data")
with(
filter(testing_data, athlete == "Jack"),
make_samozino_profile(
bodyweight = bodyweight,
push_off_distance = push_off_distance,
external_load = external_load,
aerial_time = aerial_time,
plot = TRUE
)
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.