View source: R/find-optimal-distance.R
find_optimal_distance | R Documentation |
Function that finds the distance at which the sprint, probe, or FV profile is optimal (i.e., equal to 100 perc)
find_optimal_distance(..., optimal_func = optimal_FV, min = 1, max = 60)
... |
Forwarded to selected |
optimal_func |
Selected profile optimization function. Default is |
min , max |
Distance over which to find optimal profile distance |
Distance
MSS <- 10
MAC <- 8
bodymass <- 75
fv <- create_FVP(MSS, MAC, bodymass)
find_optimal_distance(
F0 = fv$F0,
V0 = fv$V0,
bodymass = fv$bodymass,
optimal_func = optimal_FV,
method = "max"
)
find_optimal_distance(
MSS = MSS,
MAC = MAC,
optimal_func = optimal_MSS_MAC
)
find_optimal_distance(
MSS = MSS,
MAC = MAC,
optimal_func = probe_MSS_MAC
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.