probe_samozino_take_off_velocity: Probe Samozino Take-off Velocity

Description Usage Arguments Value Examples

View source: R/samozino.R

Description

probe_samozino_take_off_velocity probes results of the get_samozino_take_off_velocity function by varying F0, V0, and bodyweight parameters

Usage

1
2
3
4
5
6
7
8
9
probe_samozino_take_off_velocity(
  F0 = 3000,
  V0 = 4,
  bodyweight = 75,
  push_off_distance = 0.4,
  gravity_const = 9.81,
  change_ratio = seq(0.9, 1.1, length.out = 3),
  aggregate = "raw"
)

Arguments

F0

Numeric vector. Default 3000

V0

Numeric vector. Default 4

bodyweight

Numeric vector. Default 75

push_off_distance

Numeric vector. Default 0.4

gravity_const

Numeric vector. Default 9.81

change_ratio

Numeric vector indicating probing change ratios

aggregate

How should get_samozino_take_off_velocity output be aggregated? Default is "raw". Other options involve "ratio" and "diff" which use initial output values

Value

Probing data frame

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
require(ggplot2)

samozino_probe_data <- probe_samozino_take_off_velocity(
  F0 = 3000,
  V0 = 3.5,
  push_off_distance = 0.4,
  bodyweight = 75,
  change_ratio = seq(0.8, 1.2, length.out = 1001)
)

ggplot(
  samozino_probe_data,
  aes(
    x = change_ratio,
    y = take_off_velocity,
    color = probing
  )
) +
  geom_line()

mladenjovanovic/vjsim documentation built on Aug. 7, 2020, 10:10 p.m.