Statics·location-of-equivalent-point-load
Location Of Equivalent Point Load
Determine the location of the equivalent point load for a triangular distributed load, which is located at two-thirds the distance from the smaller intensity end of the triangle.
✓ 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 | {"base_length":5} | 3.333333 | 3.3333333333333335 | ✓ |
| 2 | {"base_length":6} | 4 | 4 | ✓ |
APIDeveloper APICall this calculator from codeexpand ↓
Endpoint
POST
/api/calculators/statics/location-of-equivalent-point-load/computeInputs (1)
base_lengthnumberdefault5
Example
curl -sX POST http://localhost:3001/api/calculators/statics/location-of-equivalent-point-load/compute \
-H "Content-Type: application/json" \
-d '{"inputs":{"base_length":5}}'Try it live
Edit the body below, then click Call API.Request body
Response
(click Call API to see the response)Source: Pattern from: distributed loads.pdf. Reproduces a standard location-of-equivalent-point-load computation; problem text paraphrased.
AI disclosure: Calculator code generated by openai/gpt-4o-mini-2024-07-18; verified by 2 test cases.