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.
| # | Inputs | Expected | Got | Status |
|---|---|---|---|---|
| 1 | {"tension_per_bolt":4,"num_bolts":4,"static_friction_coefficient":0.4} | 12.8 | 12.8 | ✓ |
| 2 | {"tension_per_bolt":5,"num_bolts":3,"static_friction_coefficient":0.5} | 15 | 15 | ✓ |
APIDeveloper APICall this calculator from codeexpand ↓
Endpoint
POST
/api/calculators/statics/maximum-friction-force/computeInputs (3)
tension_per_boltnumberdefault4num_boltsintegerdefault4static_friction_coefficientnumberdefault0.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)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.