strength_bending
checks.eurocode.steel.strength_bending
Module for checking bending moment resistance of steel cross-sections according to Eurocode 3 (EN 1993-1-1:2005), chapter 6.2.5.
Classes:
-
CheckStrengthBendingClass12–Class to perform bending moment resistance check for steel cross-sections,
-
CheckStrengthBendingClass3–Class to perform bending moment resistance check for steel cross-sections,
checks.eurocode.steel.strength_bending.CheckStrengthBendingClass12
dataclass
CheckStrengthBendingClass12(
steel_cross_section: SteelCrossSection,
m: KNM = 0,
axis: Literal["My", "Mz"] = "My",
gamma_m0: DIMENSIONLESS = 1.0,
name: str = "Bending moment strength check for steel profiles",
)
Class to perform bending moment resistance check for steel cross-sections, for cross-section class 1 and 2 only, based on 1993-1-1:2005 chapter 6.2.5.
Coordinate System:
z (vertical, usually strong axis)
↑
| x (longitudinal beam direction, into screen)
| ↗
| /
| /
| /
|/
←-----O
y (horizontal/side, usually weak axis)
Parameters:
-
steel_cross_section(SteelCrossSection) –The steel cross-section to check.
-
m(KNM, default:0) –The applied bending moment (positive value), in kNm (default is 0 kNm).
-
axis(str, default:'My') –Axis of bending: 'My' (bending around y) or 'Mz' (bending around z). Default is 'My'.
-
gamma_m0(DIMENSIONLESS, default:1.0) –Partial safety factor for resistance of cross-sections, default is 1.0.
Example
from blueprints.checks import CheckStrengthBendingClass12
from blueprints.materials.steel import SteelMaterial, SteelStrengthClass
from blueprints.structural_sections.steel.standard_profiles.heb import HEB
from blueprints.structural_sections.steel.steel_cross_section import SteelCrossSection
steel_material = SteelMaterial(steel_class=SteelStrengthClass.S355)
heb_300_profile = HEB.HEB300.with_corrosion(0)
m = 355 * 1.868 # Applied bending moment in kNm
heb_300_s355 = SteelCrossSection(profile=heb_300_profile, material=steel_material)
calc = CheckStrengthBendingClass12(heb_300_s355, m, axis="My", gamma_m0=1.0)
calc.report().to_word("bending_moment_strength.docx")
Raises:
-
ValueError–If the provided axis is not 'My' or 'Mz'. The axis parameter must be either 'My' for bending around the y-axis or 'Mz' for bending around the z-axis.
checks.eurocode.steel.strength_bending.CheckStrengthBendingClass12.bending_strength_unity_check
bending_strength_unity_check() -> Formula
Calculate the unity check for bending strength of the steel cross-section based on the applied bending moment and the calculated resistance (EN 1993-1-1:2005 art. 6.2.5(1) - Formula (6.12)).
Returns:
-
Formula–The calculated unity check for bending strength.
Source code in blueprints/checks/eurocode/steel/strength_bending.py
112 113 114 115 116 117 118 119 120 121 122 123 | |
checks.eurocode.steel.strength_bending.CheckStrengthBendingClass12.plastic_resistance
plastic_resistance() -> Formula
Calculate the plastic bending resistance of the steel cross-section (EN 1993-1-1:2005 art. 6.2.5(2) - Formula (6.13)).
Returns:
-
Formula–The calculated plastic bending resistance.
Source code in blueprints/checks/eurocode/steel/strength_bending.py
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | |
checks.eurocode.steel.strength_bending.CheckStrengthBendingClass12.report
report(n: int = 2) -> Report
Returns the report for the bending moment check (Class 1 and 2).
Parameters:
-
n(int, default:2) –Number of decimal places for numerical values in the report (default is 2).
Returns:
-
Report–Report of the bending moment check.
Source code in blueprints/checks/eurocode/steel/strength_bending.py
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 174 175 176 177 | |
checks.eurocode.steel.strength_bending.CheckStrengthBendingClass12.result
result() -> CheckResult
Calculate result of bending moment resistance (Class 1 and 2).
Returns:
-
CheckResult–True if the bending moment check passes, False otherwise.
Source code in blueprints/checks/eurocode/steel/strength_bending.py
125 126 127 128 129 130 131 132 133 134 135 136 | |
checks.eurocode.steel.strength_bending.CheckStrengthBendingClass12.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_bending.py
85 86 87 88 89 90 91 92 93 | |
checks.eurocode.steel.strength_bending.CheckStrengthBendingClass3
dataclass
CheckStrengthBendingClass3(
steel_cross_section: SteelCrossSection,
m: KNM = 0,
axis: Literal["My", "Mz"] = "My",
gamma_m0: DIMENSIONLESS = 1.0,
name: str = "Bending moment strength check for steel profiles (Class 3 only)",
)
Class to perform bending moment resistance check for steel cross-sections, for cross-section class 3 only (Eurocode 3), based on 1993-1-1:2005 chapter 6.2.5.
Coordinate System:
z (vertical, usually strong axis)
↑
| x (longitudinal beam direction, into screen)
| ↗
| /
| /
| /
|/
←-----O
y (horizontal/side, usually weak axis)
Parameters:
-
steel_cross_section(SteelCrossSection) –The steel cross-section to check.
-
m(KNM, default:0) –The applied bending moment (positive value), in kNm (default is 0 kNm).
-
axis(str, default:'My') –Axis of bending: 'My' (bending around y) or 'Mz' (bending around z). Default is 'My'.
-
gamma_m0(DIMENSIONLESS, default:1.0) –Partial safety factor for resistance of cross-sections, default is 1.0.
Example
from blueprints.checks import CheckStrengthBendingClass3
from blueprints.materials.steel import SteelMaterial, SteelStrengthClass
from blueprints.structural_sections.steel.standard_profiles.heb import HEB
from blueprints.structural_sections.steel.steel_cross_section import SteelCrossSection
steel_material = SteelMaterial(steel_class=SteelStrengthClass.S355)
heb_300_profile = HEB.HEB300.with_corrosion(0)
m = 355 * 1.677 # Applied bending moment in kNm
heb_300_s355 = SteelCrossSection(profile=heb_300_profile, material=steel_material)
calc = CheckStrengthBendingClass3(heb_300_s355, m, axis="My", gamma_m0=1.0)
calc.report().to_word("bending_moment_strength.docx")
Raises:
-
ValueError–If the provided axis is not 'My' or 'Mz'. The axis parameter must be either 'My' for bending around the y-axis or 'Mz' for bending around the z-axis.
checks.eurocode.steel.strength_bending.CheckStrengthBendingClass3.bending_strength_unity_check
bending_strength_unity_check() -> Formula
Calculate the unity check for bending strength of the steel cross-section based on the applied bending moment and the calculated resistance (EN 1993-1-1:2005 art. 6.2.5(1) - Formula (6.12)).
Returns:
-
Formula–The calculated unity check for bending strength.
Source code in blueprints/checks/eurocode/steel/strength_bending.py
272 273 274 275 276 277 278 279 280 281 282 283 | |
checks.eurocode.steel.strength_bending.CheckStrengthBendingClass3.elastic_resistance
elastic_resistance() -> Formula
Calculate the elastic bending resistance of the steel cross-section (EN 1993-1-1:2005 art. 6.2.5(3) - Formula (6.14)).
Returns:
-
Formula–The calculated elastic bending resistance.
Source code in blueprints/checks/eurocode/steel/strength_bending.py
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 | |
checks.eurocode.steel.strength_bending.CheckStrengthBendingClass3.report
report(n: int = 2) -> Report
Returns the report for the bending moment check (Class 3).
Parameters:
-
n(int, default:2) –Number of decimal places for numerical values in the report (default is 2).
Returns:
-
Report–Report of the bending moment check.
Source code in blueprints/checks/eurocode/steel/strength_bending.py
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 | |
checks.eurocode.steel.strength_bending.CheckStrengthBendingClass3.result
result() -> CheckResult
Calculate result of bending moment resistance (Class 3).
Returns:
-
CheckResult–True if the bending moment check passes, False otherwise.
Source code in blueprints/checks/eurocode/steel/strength_bending.py
285 286 287 288 289 290 291 292 293 294 295 296 | |
checks.eurocode.steel.strength_bending.CheckStrengthBendingClass3.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_bending.py
245 246 247 248 249 250 251 252 253 | |