probe_simple_take_off_velocity: Probe Simple Take-off Velocity

Description Usage Arguments Value Examples

View source: R/simple_optimal_profile.R

Description

probe_simple_take_off_velocity probes results of the get_simple_take_off_velocity function by varying L0, TOV0, and bodyweight parameters

Usage

1
2
3
4
5
6
7
probe_simple_take_off_velocity(
  L0,
  TOV0,
  bodyweight,
  change_ratio = seq(0.9, 1.1, length.out = 3),
  aggregate = "raw"
)

Arguments

L0

Numeric vector

TOV0

Numeric vector

bodyweight

Numeric vector

change_ratio

Numeric vector indicating probing change ratios

aggregate

How should probe_simple_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
require(ggplot2)

simple_probe_data <- probe_simple_take_off_velocity(
  L0 = 250,
  TOV0 = 3,
  bodyweight = 75,
  change_ratio = seq(0.8, 1.2, length.out = 1001)
)

ggplot(
  simple_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.