formula_6_37_38
codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_37_38
Formulas 6.37 and 6.38 from EN 1993-1-1:2005: Chapter 6 - Ultimate limit state.
Classes:
-
Form6Dot37And38MomentReduction–Class representing formulas 6.37 and 6.38 for the calculation of reduced bending moment.
-
Form6Dot38A–Class representing formula 6.38 for the calculation of [\(a\)].
-
Form6Dot38N–Class representing formula 6.38 for the calculation of [\(n\)].
codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_37_38.Form6Dot37And38MomentReduction
Form6Dot37And38MomentReduction(
mpl_z_rd: NMM, a: DIMENSIONLESS, n: DIMENSIONLESS
)
Bases: Formula
Class representing formulas 6.37 and 6.38 for the calculation of reduced bending moment.
[\(M_{N,z,Rd}\)] Reduced bending moment [\(Nmm\)].
EN 1993-1-1:2005 art.6.2.9.1(5) - Formulas (6.37 and 6.38)
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 6.38a (
Form6Dot38A) [-]. -
n(DIMENSIONLESS) –Axial force ratio, see equation 6.38n (
Form6Dot38N) [-].
Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_37_38.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_2005.chapter_6_ultimate_limit_state.formula_6_37_38.Form6Dot37And38MomentReduction.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formulas 6.37 and 6.38.
Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_37_38.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_2005.chapter_6_ultimate_limit_state.formula_6_37_38.Form6Dot38A
Form6Dot38A(capital_a: MM2, b: MM, tf: MM)
Bases: Formula
Class representing formula 6.38 for the calculation of [\(a\)].
[\(a\)] Reduction factor for cross-sectional area [dimensionless].
EN 1993-1-1:2005 art.6.2.9(5) - Formula (6.38a)
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_2005/chapter_6_ultimate_limit_state/formula_6_37_38.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_2005.chapter_6_ultimate_limit_state.formula_6_37_38.Form6Dot38A.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 6.38a.
Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_37_38.py
184 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 | |
codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_37_38.Form6Dot38N
Form6Dot38N(n_ed: N, n_pl_rd: N)
Bases: Formula
Class representing formula 6.38 for the calculation of [\(n\)].
[\(n\)] Axial force ratio [dimensionless].
EN 1993-1-1:2005 art.6.2.9(5) - Formula (6.38n)
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_2005/chapter_6_ultimate_limit_state/formula_6_37_38.py
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | |
codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_37_38.Form6Dot38N.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 6.38n.
Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_37_38.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 | |