ResearchForge / Calculators
Statics·maximum-friction-force

Maximum Friction Force

Calculate the maximum force that a connection can support without slipping, given the tension in the bolts and the coefficient of static friction.

✓ All 2 test cases pass.

Inputs

Test cases

These cases run live in your browser every time the page loads. If any fail, the calculator is broken — file an issue.

#InputsExpectedGotStatus
1{"tension_per_bolt":4,"num_bolts":4,"static_friction_coefficient":0.4}12.812.8
2{"tension_per_bolt":5,"num_bolts":3,"static_friction_coefficient":0.5}1515
APIDeveloper APICall this calculator from codeexpand ↓
Endpoint
POST/api/calculators/statics/maximum-friction-force/compute
Inputs (3)
  • tension_per_boltnumberdefault 4
  • num_boltsintegerdefault 4
  • static_friction_coefficientnumberdefault 0.4
Example
curl -sX POST http://localhost:3001/api/calculators/statics/maximum-friction-force/compute \
  -H "Content-Type: application/json" \
  -d '{"inputs":{"tension_per_bolt":4,"num_bolts":4,"static_friction_coefficient":0.4}}'
Try it live
Edit the body below, then click Call API.
Request body
Response
(click Call API to see the response)
full API docs →

Source: Pattern from: Ch. 8.pdf. Reproduces a standard maximum-friction-force computation; problem text paraphrased.

AI disclosure: Calculator code generated by openai/gpt-4o-mini-2024-07-18; verified by 2 test cases.