|
|
|
|
|
by nextaccountic
725 days ago
|
|
Something I really like is that the curve that a rope or thread makes when fixed in two points but not under tension, it's not a parabola. It really looks like one though, but it isn't. It's a catenary. That's something you can verify by writing some simulation code, then drawing the curve, and then drawing the best matching parabola on top. It doesn't fit. To model the issue mathematically you need some not-too-advanced calculus. On both the computer simulation and the mathematical model, you model the rope as being made of very small elements that are linked together (like a chain). In the simulation those elements are small, but finite. In the math you take the limit as the volume of the element tends to zero. It's the same way of thinking but math gives some different tools, enabling you to solve the curve analytically |
|
https://en.wikipedia.org/wiki/Catenary#Catenary_bridges
> Comparison of a catenary arch (black dotted curve) and a parabolic arch (red solid curve) with the same span and sag. The catenary represents the profile of a simple suspension bridge, or the cable of a suspended-deck suspension bridge on which its deck and hangers have negligible weight compared to its cable. The parabola represents the profile of the cable of a suspended-deck suspension bridge on which its cable and hangers have negligible weight compared to its deck. The profile of the cable of a real suspension bridge with the same span and sag lies between the two curves. The catenary and parabola equations are respectively, y = cosh x and y = x²( (cosh 1) − 1) + 1
https://www.quora.com/How-do-you-tell-the-difference-between...
> If the chain is carrying nothing other than its own weight, the resulting shape is a "catenary". If the chain is like a suspended cable carrying a deck below it, and its own weight is nothing compared to that of the deck, the resulting shape is a "parabola".
Which shows that sometimes your model (either using pure math or a simulation) is too simple to capture whatever is going on in the real world. (it gets further complicated when one considers elasticity etc)