strength_tension
checks.eurocode.steel.strength_tension
Module for checking tension force resistance of steel cross-sections based on EN 1993-1-1:2005 art. 6.2.3.
Classes:
-
CheckStrengthTensionClass1234–Tension force resistance check for steel cross-sections (class 1, 2, 3 and 4) based on EN 1993-1-1:2005 art. 6.2.3.
checks.eurocode.steel.strength_tension.CheckStrengthTensionClass1234
dataclass
CheckStrengthTensionClass1234(
steel_cross_section: SteelCrossSection,
n: KN = 0,
gamma_m0: DIMENSIONLESS = 1.0,
name: str = "Tension strength check for steel profiles",
)
Tension force resistance check for steel cross-sections (class 1, 2, 3 and 4) based on EN 1993-1-1:2005 art. 6.2.3.
Coordinate System:
z (vertical)
↑
| x (longitudinal beam direction, into screen)
| ↗
| /
| /
| /
|/
←-----O
y (horizontal/side)
Parameters:
-
steel_cross_section(SteelCrossSection) –The steel cross-section to check.
-
n(KN, default:0) –The applied tensile force (positive value), default is 0 kN. Will raise an error if a negative value is provided, as this check is only for tension.
-
gamma_m0(DIMENSIONLESS, default:1.0) –Partial safety factor for resistance of cross-sections, default is 1.0.
Example
from blueprints.checks import CheckStrengthTensionClass1234
from blueprints.materials.steel import SteelMaterial, SteelStrengthClass
from blueprints.structural_sections.steel import SteelCrossSection
from blueprints.structural_sections.steel.standard_profiles.heb import HEB
steel_material = SteelMaterial(steel_class=SteelStrengthClass.S355)
heb_300_profile = HEB.HEB300.with_corrosion(corrosion=1.5)
n = 10000 # Applied tensile force in kN
heb_300_s355 = SteelCrossSection(profile=heb_300_profile, material=steel_material)
calc = CheckStrengthTensionClass1234(steel_cross_section=heb_300_s355, n=n, gamma_m0=1.0)
calc.report().to_word(path="tension_strength.docx")
Raises:
-
NegativeValueError–If the applied force is not tension (i.e., if n < 0).
checks.eurocode.steel.strength_tension.CheckStrengthTensionClass1234.plastic_resistance
plastic_resistance() -> Formula
Calculate the tension force plastic resistance of the steel cross-section based on the gross cross-sectional area and yield strength (EN 1993-1-1:2005 art. 6.2.3(2a) - Formula (6.6)).
Returns:
-
Formula–The calculated tension force resistance.
Source code in blueprints/checks/eurocode/steel/strength_tension.py
91 92 93 94 95 96 97 98 99 100 101 102 103 | |
checks.eurocode.steel.strength_tension.CheckStrengthTensionClass1234.report
report(n: int = 2) -> Report
Returns the report for the tension force check.
Parameters:
-
n(int, default:2) –Number of decimal places for numerical values in the report (default is 2).
Returns:
-
Report–Full report on the tension force check, including the applied force, calculated resistance, unity check, and overall result.
Source code in blueprints/checks/eurocode/steel/strength_tension.py
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | |
checks.eurocode.steel.strength_tension.CheckStrengthTensionClass1234.result
result() -> CheckResult
Calculate result of tension force resistance.
Returns:
-
CheckResult–This is the result of the tension force resistance check, which compares the provided tensile force with the calculated resistance. The check is satisfied if the provided tensile force does not exceed the resistance.
Source code in blueprints/checks/eurocode/steel/strength_tension.py
118 119 120 121 122 123 124 125 126 127 128 | |
checks.eurocode.steel.strength_tension.CheckStrengthTensionClass1234.source_docs
staticmethod
source_docs() -> list[str]
List of source document identifiers used for this check.
Returns:
-
list[str]–
Source code in blueprints/checks/eurocode/steel/strength_tension.py
81 82 83 84 85 86 87 88 89 | |
checks.eurocode.steel.strength_tension.CheckStrengthTensionClass1234.tensile_strength_unity_check
tensile_strength_unity_check() -> Formula
Calculate the unity check for tensile strength of the steel cross-section based on the applied tensile force and the calculated resistance (EN 1993-1-1:2005 art. 6.2.3(1) - Formula (6.5)).
Returns:
-
Formula–The calculated unity check for tensile strength.
Source code in blueprints/checks/eurocode/steel/strength_tension.py
105 106 107 108 109 110 111 112 113 114 115 116 | |