Skip to main content

A Python library for solving catenary equations

Project description

pyCatenary

Build Status PyPI GitHub

A Python library for solving catenary equations.

Installation

PyPI version

For installing the latest official release on the Python Package Index (PyPI):

pip install pycatenary

Development version

Installing

For installing a development version through pip:

git clone https://github.com/tridelat/pycatenary
cd pycatenary
pip install -e .

Running tests

From the root directory of pycatenary, simply run:

pytest

About pyCatenary

Features

  • Catenary solutions for elastic or fully inextensible/rigid cables.
  • Contact with flat floor/seabed for partly lifted lines.
  • Multisegmented cables with different properties.
  • Catenary lines can be defined in both 2D or 3D coordinate systems.
  • Tension and position can be retrieved at fairlead/anchor and at arbitrary position along line.

Assumptions

  • All lines, included multisegmented ones, have a single pure catenary shape.
  • Gravitational acceleration is along -Z in 3D, -Y in 2D.
  • If floor/seabed is enabled, it is assumed flat.
  • For multisegmented lines, elongation is calculated per section, starting from the lowest segment in the catenary. Once the solution for the elongated catenary has converged, tension along the line is retrieved directly from the catenary equation using submerged weight averaged over the lifted line length.

Getting Started

Creating a mooring line

from pycatenary import MooringLine

# define properties of cable
line1 = MooringLine(
    fairlead=[-54.50, -19.84, -14.0],  # fairlead position [m]
    anchor=[-787.09, -286.48, -200],  # anchor position [m]
    L=850.0,  # unstretched line length [m]
    w=5844.1,  # submerged weight [N/m]
    EA=3.27e9,  # axial stiffness [N]
    floor=True,  # if True, floor at anchor level
)

# compute solution for the catenary
line1.compute_solution()

Plotting

With matplotlib installed, the cable can be plotted in 3D:

line1.plot()

Or in 2D:

line1.plot_2d()

Retrieving tension/position along line

The force experienced by the anchor or fairlead at the mooring line can be retrieved as follows:

# get force at the fairlead
line1.get_fairlead_force()

# get force at the anchor
line1.get_anchor_force()

Tension (strictly positive) and position can also be retrieved along the line as follows:

# get tension at 800m along the line from the anchor
line1.get_tension(800.0)
# get position at 800m along the line from the anchor
line1.get_position(800.0)

# get tension at 5m along the line from fairlead
line1.get_tension(5.0, from_fairlead=True)
# get position at 5m along the line from fairlead
line1.get_position(5.0, from_fairlead=True)

Updating fairlead/anchor position

Fairlead and anchor positions can be updated as follows:

# change fairlead position
line1.set_fairlead_position([-50.0, -19.84, -14.0])

# do not forget to recompute solution after updating positions
line1.compute_solution()

This can be used for quasi-static analysis, retrieving forces at fairlead/anchor, applying it to an external body dynamics solver, doing a dynamics step, and updating fairlead/anchor positions of the pyCatenary line to retrieve the new forces.

Other functionalities

For extra functionality, please refer to the documentation: https://tridelat.github.io/pycatenary

Examples

Cable hanging on own weight

This 2D example consists of an inextensible cable hanging on its own weight between 2 points placed at the same height, with no floor:

from pycatenary import MooringLine

# define properties of cable
line2 = MooringLine(
    fairlead=[17.69, 0.0],
    anchor=[0.0, 0.0],
    L=20.0,
    w=1.962,
    EA=None,
    floor=False,
)

# compute solution for the catenary
line2.compute_solution()

# plot solution
line2.plot()

Partly / fully lifted cable

The following 2D example showcases the different configurations possible for a mooring line.

For a partly lifted line:

from pycatenary import MooringLine
import numpy as np

# make mooring line in partly lifted line configuration
line3 = MooringLine(
    fairlead=[-58.0, -14.0],
    anchor=[-836.7, -200.0],
    L=850.0,
    w=5844.1,
    EA=3.27e9,
    floor=True,
)
line3.compute_solution()
line3.plot()

# move fairlead for fully lifted line position
new_position = line3.get_fairlead_position() + np.array([50.0, 0.0])
line3.set_fairlead_position(new_position)
line3.compute_solution()
line3.plot()

# move fairlead for taut line position
new_position = line3.get_fairlead_position() + np.array([100.0, 0.0])
line3.set_fairlead_position(new_position)
line3.compute_solution()
line3.plot()

# move fairlead in hanging line position
new_position = line3.get_fairlead_position() + np.array([-350.0, 0.0])
line3.set_fairlead_position(new_position)
line3.compute_solution()
line3.plot()

Multisegmented cable

The following 3D example consists of a mooring line with 4 segments of different properties with the floor placed at the anchor height. Segments must be defined from the anchor to the fairlead.

from pycatenary import MooringLine
import numpy as np

line4 = MooringLine(
    fairlead=[0.142, 0.0, 5.486],
    anchor=[7.083, 0.0, 0.0],
    L=[5.672, 0.126, 4.0, 0.259],
    w=np.array([0.402, 1.558, 0.00425, 1.529]) * 9.81,
    EA=[2.050e3, 3.636e6, 10.873e3, 6.464e6],
    floor=True
)

line4.compute_solution()

line4.plot()

Note that to make the cable inextensible, the axial stiffness only needs to be defined to None as follows:

from pycatenary import MooringLine
import numpy as np

line4 = MooringLine(
    fairlead=[0.142, 0.0, 5.486],
    anchor=[7.083, 0.0, 0.0],
    L=[5.672, 0.126, 4.0, 0.259],
    w=np.array([0.402, 1.558, 0.00425, 1.529]) * 9.81,
    EA=None,
    floor=True
)

line4.compute_solution()

Documentation

To generate the documentation, run the following from the root directory:

cd docs
sphinx-build -M html build

Once generated, open the index page from build/html/index.html.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pycatenary-1.0.0.tar.gz (17.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pycatenary-1.0.0-py3-none-any.whl (17.4 kB view details)

Uploaded Python 3

File details

Details for the file pycatenary-1.0.0.tar.gz.

File metadata

  • Download URL: pycatenary-1.0.0.tar.gz
  • Upload date:
  • Size: 17.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.7

File hashes

Hashes for pycatenary-1.0.0.tar.gz
Algorithm Hash digest
SHA256 5e1ee88649bd61044d92c83f170c4679fb5796bf037e1c921f759b6fd977d781
MD5 02f3b112434700a40b3978353874c6ff
BLAKE2b-256 feb0bc016ab451e3faa2c39f64b96528145622491f1a6d91238776daa288dbe0

See more details on using hashes here.

File details

Details for the file pycatenary-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: pycatenary-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 17.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.7

File hashes

Hashes for pycatenary-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 75fee743e920bf2f1003566945d45238bf8e6c72caf626ef2fa24520496122b5
MD5 ff5b3c29661578d976f2e45cebc08780
BLAKE2b-256 143c7177e74f571083a463f6f7370ff125ece107cf2b5f06ca978698c09f8feb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page