Method: Joules.force_v1
- Defined in:
- lib/joules/forces.rb
.force_v1(mass, acceleration) ⇒ Float
Note:
There are two other methods for calculating force.
Calculates the force given mass and acceleration.
26 27 28 |
# File 'lib/joules/forces.rb', line 26 def force_v1(mass, acceleration) return mass * acceleration.to_f end |