formula_5_13n
codes.eurocode.en_1992_1_1_2004.chapter_5_structural_analysis.formula_5_13n
Formula 5.13N from EN 1992-1-1:2004: Chapter 5 Structural Analysis.
Classes:
-
Form5Dot13nSlendernessCriterionIsolatedMembers–Class representing formula 5.13N for the calculation of the slenderness limit where second order effects may be ignored.
-
SubForm5Dot13aCreepRatio–Class representing sub-formula for [\(A\)] in formula (5.13N).
-
SubForm5Dot13bMechanicalReinforcementFactor–Class representing sub-formula for [\(B\)] in formula (5.13N).
-
SubForm5Dot13cMomentRatio–Class representing sub-formula for [\(C\)] in formula (5.13N).
codes.eurocode.en_1992_1_1_2004.chapter_5_structural_analysis.formula_5_13n.Form5Dot13nSlendernessCriterionIsolatedMembers
Form5Dot13nSlendernessCriterionIsolatedMembers(
a: DIMENSIONLESS,
b: DIMENSIONLESS,
c: DIMENSIONLESS,
n_ed: N,
a_c: MM2,
f_cd: MPA,
)
Bases: Formula
Class representing formula 5.13N for the calculation of the slenderness limit where second order effects may be ignored.
[\(λ_{lim}\)] Calculation of the slenderness limit, where second order effects may be ignored (dimensionless).
Note: The value of [\(λ_{lim}\)] for use in a Country may be found in its National Annex. The recommended value follows from this equation.
EN 1992-1-1:2004 art.5.8.3.1 (1) - formula (5.13N)
Parameters:
-
a(DIMENSIONLESS) –[\(A\)] calculation value, based on the effective creep ratio [\(-\)]. Follows from equation 5.13A. If unknown, A = 0,7. Use your own implementation of this value or use the
SubForm5Dot13aCreepRatioclass. -
b(DIMENSIONLESS) –[\(B\)] calculation value, based on the mechanical reinforcement ratio [\(-\)]. Follows from equation 5.13B. If unknown, B = 1,1. Use your own implementation of this value or use the
SubForm5Dot13bMechanicalReinforcementFactorclass. -
c(DIMENSIONLESS) –[\(C\)] calculation value, based on the moment ratio [\(-\)]. Follows from equation 5.13C. If unknown, C = 0,7. Use your own implementation of this value or use the
SubForm5Dot13cMomentRatioclass. -
n_ed(N) –[\(N_{Ed}\)] is the design value of the axial force [\(N\)].
-
a_c(MM2) –[\(A_c\)] is the area of the concrete section [\(mm^2\)].
-
f_cd(MPA) –[\(f_{cd}\)] is the design value of concrete compressive strength [\(MPa\)].
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_5_structural_analysis/formula_5_13n.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | |
codes.eurocode.en_1992_1_1_2004.chapter_5_structural_analysis.formula_5_13n.Form5Dot13nSlendernessCriterionIsolatedMembers.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 5.13N.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_5_structural_analysis/formula_5_13n.py
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 90 91 92 93 94 95 96 97 98 99 100 | |
codes.eurocode.en_1992_1_1_2004.chapter_5_structural_analysis.formula_5_13n.SubForm5Dot13aCreepRatio
SubForm5Dot13aCreepRatio(phi_ef: DIMENSIONLESS)
Bases: Formula
Class representing sub-formula for [\(A\)] in formula (5.13N).
[\(A\)] Calculation of the factor [\(A\)] in formula (5.13N).
EN 1992-1-1:2004 art.5.8.3.1 (1) - formula (5.13N)
Parameters:
-
phi_ef(DIMENSIONLESS) –[\(\phi_{ef}\)] Effective creep ratio; see 5.8.4 (If [\(\phi_{ef}\)] is not known, A = 0.7)
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_5_structural_analysis/formula_5_13n.py
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | |
codes.eurocode.en_1992_1_1_2004.chapter_5_structural_analysis.formula_5_13n.SubForm5Dot13aCreepRatio.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 5.13a.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_5_structural_analysis/formula_5_13n.py
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | |
codes.eurocode.en_1992_1_1_2004.chapter_5_structural_analysis.formula_5_13n.SubForm5Dot13bMechanicalReinforcementFactor
SubForm5Dot13bMechanicalReinforcementFactor(
a_s: MM2, f_yd: MPA, a_c: MM2, f_cd: MPA
)
Bases: Formula
Class representing sub-formula for [\(B\)] in formula (5.13N).
[\(B\)] Calculation of the factor [\(B\)] in formula (5.13N).
EN 1992-1-1:2004 art.5.8.3.1 (1) - formula (5.13N)
Parameters:
-
a_s(MM2) –[\(A_s\)] is the total area of longitudinal reinforcement [\(mm^2\)].
-
f_yd(MPA) –[\(f_{yd}\)] is the design yield stress of the reinforcement [\(MPa\)].
-
a_c(MM2) –[\(A_c\)] is the area of concrete section [\(mm^2\)].
-
f_cd(MPA) –[\(f_{cd}\)] is the design value of concrete compressive strength [\(MPa\)].
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_5_structural_analysis/formula_5_13n.py
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | |
codes.eurocode.en_1992_1_1_2004.chapter_5_structural_analysis.formula_5_13n.SubForm5Dot13bMechanicalReinforcementFactor.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 5.13b.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_5_structural_analysis/formula_5_13n.py
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | |
codes.eurocode.en_1992_1_1_2004.chapter_5_structural_analysis.formula_5_13n.SubForm5Dot13cMomentRatio
SubForm5Dot13cMomentRatio(m_01: KNM, m_02: KNM)
Bases: Formula
Class representing sub-formula for [\(C\)] in formula (5.13N).
[\(C\)] Calculation of the factor [\(C\)] in formula (5.13N).
EN 1992-1-1:2004 art.5.8.3.1 (1) - formula (5.13)
Parameters:
-
m_01(KNM) –[\(M_{01}\)] is one of the first order end moments [\(kNm\)].
-
m_02(KNM) –[\(M_{02}\)] is one of the first order end moments [\(kNm\)].
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_5_structural_analysis/formula_5_13n.py
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 | |
codes.eurocode.en_1992_1_1_2004.chapter_5_structural_analysis.formula_5_13n.SubForm5Dot13cMomentRatio.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 5.13b.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_5_structural_analysis/formula_5_13n.py
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 | |