Residual Rated Tensile Strength (RRTS)
Context
When strands are cut — due to damage, corrosion, or mechanical incidents — the rated tensile strength (RTS) of a cable is reduced. RRTS quantifies the remaining capacity after accounting for those cuts.
Strand cuts are declared per layer. Each layer has a unit RTS per strand (rts_layer_i), so the total strength loss is the sum of individual strand contributions across all affected layers.
Scientific formulas
The RRTS of a damaged cable:
The utilization rate \(\tau\) (as a percentage) relative to the safety-adjusted RRTS:
| Symbol | Description |
|---|---|
| \(RTS_{cable}\) | Rated Tensile Strength of the intact cable (N) |
| \(n_{cut,i}\) | Number of cut strands in layer \(i\) |
| \(rts_{layer,i}\) | Unit RTS per strand in layer \(i\) (N); 0 for unused layers |
| \(N_{layers}\) | Number of layers (up to 8) |
| \(T_{max}\) | Maximum mechanical tension applied (N) |
| \(k_s\) | Safety coefficient (dimensionless, catalog column safety_coefficient) |
When the high_safety flag is enabled, an additional security factor of 1.5 is applied to \(k_s\):
The effective value is exposed by the read-only safety_coefficient property and is used automatically by utilization_rate.
Model assumptions
-
The RRTS model assumes that all strands in a given layer have the same RTS. Heterogeneous layers must be pre-processed (e.g., split or averaged) before loading data.
-
The utilization rate calculation assumes that the maximum tension \(T_{max}\) is applied uniformly across the cable section, which may not reflect localized stress concentrations in real-world scenarios.
-
The first layer is the external layer and the last layer is also called central layer.
Catalog parameters
The following columns must be present in the cable catalog CSV for RRTS support:
| Column | Unit | Description |
|---|---|---|
rts_cable |
N | RTS of the intact cable |
rts_layer_1 … rts_layer_8 |
N | Unit RTS per strand per layer (0 = unused) |
safety_coefficient |
— | Safety coefficient \(k_s\) |
nb_strand_layer_1 … nb_strand_layer_8 |
— | Number of strands per layer (0 = unused) |
Coverage check
The ratio \(\frac{\sum_{i} rts_{layer,i} \times nb_{strand,i}}{RTS_{cable}}\) is a check for data consistency. Values significantly different than 1 may indicate missing strength contributions or strand data.
Layer-level assumption
The model assumes all strands in a given layer are identical (same RTS). Layers with heterogeneous strands must be split or averaged externally before loading data.
Usage
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | |
Architecture
Under the hood, CableArray delegates all RRTS-related computations to a
ITensileStrength
implementation. The default implementation is
AdditiveLayerRts,
which computes strand-level losses additively per layer. A custom model can be
injected via the tensile_strength argument of CableArray.
Custom tensile strength models
You can implement your own tensile strength model by subclassing
ITensileStrength.
This interface defines the contract for cut_strands, high_safety,
safety_coefficient, nb_strand_per_layer, rts_coverage, rrts, and
utilization_rate. Once implemented, pass an instance to CableArray:
1 | |
This is useful when the default additive per-layer model does not match your cable technology (e.g. composite cables, non-uniform strand contributions, or proprietary strength models).
See the CableArray API reference and the Cable Strength API reference for full documentation.