3. Section 2 overview
‘Heavy’ Cables - the Linear Solution
📂 Please log in or enroll to access resources

In this section, we’ll start our exploration of cables by examing the standard linear model of cable behaviour. We’ll consider a simple cable hanging under the influence of its own weight. By ignoring any change in cable length and therefore assuming no change in the geometry of the cable under loading, we’ll derive a closed-form solution for the maximum tension in the cable. As well as being a good entry point into cable analysis, this will provide a baseline case to test our non-linear code against later.

In the first three lectures, we’ll work through the classic process of deriving the cable or catenary equation. This will result in an equation that, depending on the quantity we’re solving for, will be transcendental. In our case, we’ll be solving for the maximum tension in the cable, so we must solve the equation numerically.

In the final lecture, we’ll move over to a Jupyter Notebook and write some Python code that will solve the catenary equation giving us the maximum tension for a given cable span, self-weight and mid-span sag.

One key takeaway from this section is that we’re ignoring any cable extension. If the geometry of the cable significantly changes under the influence of the applied load, this will invalidate what we’ve done in this section. So, it will be quite clear how valuable a non-linear solver will be to us, once we finish this section.

Next Lesson
4. Deriving a linear heavy cable equation