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.
Please log in or enroll to continue
If you've already enrolled, please log in to continue.
Non-linear Finite Element Analysis of 2D Catenary & Cable Structures using Python
Build an iterative solution toolbox to analyse structures that exhibit geometric non-linearity due to large deflections.
After completing this course...
- You will understand the concept of geometric non-linearity and when it should be considered.
- You will understand how to modify the axially loaded element stiffness matrix to account for large deflections and changes in geometry.
- You will have implemented a Newton-Raphson iterative solution algorithm that seeks to converge on the deformed state of the structure.
- You will have a workflow that leverages open-source modelling tools in Blender to quickly generate the initial structural geometry.