A catenary is the
curve assumed by a hanging chain or cable under its own
weight when supported only at its ends. "The equation was obtained by Leibniz, Huygens, and Johann Bernoulli in 1691 in response to a challenge by Jakob Bernoulli." (Wolfram MathWorld) From length L of the chain and width W
(distance of suspensions) the parameter a can be
calculated by an iteration.
The catenary sag h is the vertical
difference of the lowest point of the chain
|
Check a radio button to set the points
A, B, or C (intermediate). |
|
µ is the mass per length of the chain
(kg / m). |
|
Input for the ratio of length L and
width AB (L>W). |
|
|
Having changed µ or L/W press button
"Apply input". |
Step to change the ratio L/W. |
|
Use the buttons (+) or (-) to apply the
selected step ∆(L/W) to increase or decrease the ratio
L/W, or use the keys. |
|
The radius r of curvature at the lowest
point of the chain is r = a. |
double solveA(double L, double W) { double x, y; double A=0; for (int a=0; a<=50000; a++) { x = a; y = 2.0*x*Math.sinh(0.5*W/x); if (y<L) { A=x-1.0; break; } } for (int a=0; a<=12; a++) { x = A + 0.1*a; y = 2.0*x*Math.sinh(0.5*W/x); if (y<L) { A=x-0.1; break; } } // repeat the steps to the desired
precision
return A;
} Using series expansions for cosh(x)
and sinh(x) in the equations y(x,a) and L(a,W) we get
the approximations:
and, eliminating the parameter a:
|
|
Catenary
(Wikipedia) Catenary (Wolfram MathWorld) The Catenary (J. B. Calvert) Cable’s Sag & Tension Calculation Tension on the ends of a cable suspended at different heights |
2017-2023 J. Giesen
updated: 2023, Oct 12