formula_8_49_50
codes.eurocode.en_1993_1_1_2022.chapter_8_ultimate_limit_state.formula_8_49_50
Formulas 8.49 and 8.50 from EN 1993-1-1:2022: Chapter 8 - Ultimate Limit State.
Classes:
-
Form8Dot49And50MomentReduction–Class representing formulas 8.49 and 8.50 for the calculation of reduced bending moment.
-
Form8Dot50A–Class representing formula 8.50a for the calculation of [\(a\)].
-
Form8Dot50N–Class representing formula 8.50 for the calculation of [\(n\)].
codes.eurocode.en_1993_1_1_2022.chapter_8_ultimate_limit_state.formula_8_49_50.Form8Dot49And50MomentReduction
Form8Dot49And50MomentReduction(
mpl_z_rd: NMM, a: DIMENSIONLESS, n: DIMENSIONLESS
)
Bases: Formula
Class representing formulas 8.49 and 8.50 for the calculation of reduced bending moment.
[\(M_{N,z,Rd}\)] Reduced bending moment [\(Nmm\)].
EN 1993-1-1:2022 art.8.2.9.1(6) - Formulas (8.49) and (8.50)
Parameters:
-
mpl_z_rd(NMM) –[\(M_{pl,z,Rd}\)] Plastic bending moment about the z-axis [\(Nmm\)].
-
a(DIMENSIONLESS) –Reduction factor for cross-sectional area, see equation 8.50a (
Form8Dot50A) [-]. -
n(DIMENSIONLESS) –Axial force ratio, see equation 8.50n (
Form8Dot50N) [-].
Source code in blueprints/codes/eurocode/en_1993_1_1_2022/chapter_8_ultimate_limit_state/formula_8_49_50.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | |
codes.eurocode.en_1993_1_1_2022.chapter_8_ultimate_limit_state.formula_8_49_50.Form8Dot49And50MomentReduction.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formulas 8.49 and 8.50.
Source code in blueprints/codes/eurocode/en_1993_1_1_2022/chapter_8_ultimate_limit_state/formula_8_49_50.py
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | |
codes.eurocode.en_1993_1_1_2022.chapter_8_ultimate_limit_state.formula_8_49_50.Form8Dot50A
Form8Dot50A(capital_a: MM2, b: MM, tf: MM)
Bases: Formula
Class representing formula 8.50a for the calculation of [\(a\)].
[\(a\)] Reduction factor for cross-sectional area [dimensionless].
EN 1993-1-1:2022 art.8.2.9.1(6) - Formula (8.50a)
Parameters:
-
capital_a(MM2) –[\(A\)] Cross-sectional area [\(mm^2\)].
-
b(MM) –[\(b\)] Width of the cross-section [\(mm\)].
-
tf(MM) –[\(t_f\)] Thickness of the flange [\(mm\)].
Source code in blueprints/codes/eurocode/en_1993_1_1_2022/chapter_8_ultimate_limit_state/formula_8_49_50.py
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 | |
codes.eurocode.en_1993_1_1_2022.chapter_8_ultimate_limit_state.formula_8_49_50.Form8Dot50A.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 8.50a.
Source code in blueprints/codes/eurocode/en_1993_1_1_2022/chapter_8_ultimate_limit_state/formula_8_49_50.py
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 | |
codes.eurocode.en_1993_1_1_2022.chapter_8_ultimate_limit_state.formula_8_49_50.Form8Dot50N
Form8Dot50N(n_ed: N, n_pl_rd: N)
Bases: Formula
Class representing formula 8.50 for the calculation of [\(n\)].
[\(n\)] Axial force ratio [dimensionless].
EN 1993-1-1:2022 art.8.2.9.1(6) - Formula (8.50)
Parameters:
-
n_ed(N) –[\(N_{Ed}\)] Design axial force [\(N\)].
-
n_pl_rd(N) –[\(N_{pl,Rd}\)] Plastic resistance of the cross-section [\(N\)].
Source code in blueprints/codes/eurocode/en_1993_1_1_2022/chapter_8_ultimate_limit_state/formula_8_49_50.py
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | |
codes.eurocode.en_1993_1_1_2022.chapter_8_ultimate_limit_state.formula_8_49_50.Form8Dot50N.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 8.50n.
Source code in blueprints/codes/eurocode/en_1993_1_1_2022/chapter_8_ultimate_limit_state/formula_8_49_50.py
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | |