Function get_mean_power calculates the vertical jump mean power using kinetic and potential energy

get_mean_power(
  mass,
  weight = mass * 9.81,
  take_off_velocity,
  push_off_distance,
  time_taken
)

Arguments

mass

Numeric vector

weight

Numeric vector. Default mass * 9.81

take_off_velocity

Numeric vector

push_off_distance

Numeric vector

time_taken

Numeric vector

Value

Numeric vector

Examples

get_mean_power(100, 100 * 9.81, 4, 0.4, 0.3)
#> [1] 3974.667