Function get_mean_force_over_time calculates mean force over push-off time using impulse equation

get_mean_force_over_time(
  mass,
  weight = mass * 9.81,
  take_off_velocity,
  time_taken
)

Arguments

mass

Numeric vector

weight

Numeric vector. Default mass * 9.81

take_off_velocity

Numeric vector

time_taken

Numeric vector

Value

Numeric vector

Examples

get_mean_force_over_time(100, 100 * 9.81, 4, 0.3)
#> [1] 2314.333