Method: Joules.final_velocity_v1
- Defined in:
- lib/joules/kinematics.rb
.final_velocity_v1(initial_velocity, acceleration, time) ⇒ Float
Note:
There is one other method for calculating final velocity.
Calculates the final velocity given initial velocity, acceleration, and time.
84 85 86 |
# File 'lib/joules/kinematics.rb', line 84 def final_velocity_v1(initial_velocity, acceleration, time) return initial_velocity + (acceleration * time.to_f) end |