Method: Joules.maximum_friction_force
- Defined in:
- lib/joules/forces.rb
.maximum_friction_force(coefficient_of_friction, normal_force) ⇒ Float
Calculates the maximum friction force given coefficient of friction and normal force.
76 77 78 |
# File 'lib/joules/forces.rb', line 76 def maximum_friction_force(coefficient_of_friction, normal_force) return coefficient_of_friction * normal_force.to_f end |