Function get_work
calculates the work needed for the vertical jump using
kinetic and potential energy
get_work(mass, weight = mass * 9.81, take_off_velocity, push_off_distance)
mass | Numeric vector |
---|---|
weight | Numeric vector. Default |
take_off_velocity | Numeric vector |
push_off_distance | Numeric vector |
Numeric vector
get_work(100, 100 * 9.81, 4, 0.4)#> [1] 1192.4