formula_5_13
codes.eurocode.en_1993_5_2007.chapter_5_ultimate_limit_states.formula_5_13
Formula 5.13 from EN 1993-5:2007 Chapter 5 - Ultimate limit state.
Classes:
-
Form5Dot13SimplifiedBucklingCheck–Class representing formula 5.13 for combined axial force and bending moment check. Only valid for class 1, 2 and 3.
codes.eurocode.en_1993_5_2007.chapter_5_ultimate_limit_states.formula_5_13.Form5Dot13SimplifiedBucklingCheck
Form5Dot13SimplifiedBucklingCheck(
n_ed: KN,
m_ed: KNM,
a: MM2,
f_y: MPA,
gamma_m0: DIMENSIONLESS,
gamma_m1: DIMENSIONLESS,
chi: DIMENSIONLESS,
m_c_rd: KNM,
)
Bases: Formula
Class representing formula 5.13 for combined axial force and bending moment check. Only valid for class 1, 2 and 3.
Simplified buckling check for class 1, 2 and 3.
Provided that the boundary conditions are supplied by elements (anchor, earth support, capping beam, etc.) that give positional restraint corresponding to the non-sway buckling mode, this check may be used:
Parameters:
-
n_ed(KN) –[\(kN\)] Design axial force [\(kN\)].
-
m_ed(KNM) –[\(kNm\)] Design bending moment [\(kNm\)].
-
a(MM2) –[\(mm^2\)] Cross-sectional area [\(mm^2\)].
-
f_y(MPA) –[\(MPa\)] Yield strength of the material [\(MPa\)].
-
gamma_m0(DIMENSIONLESS) –[\(\gamma_{M0}\)] Partial factor according to 5.1.1 (4) [\(-\)].
-
gamma_m1(DIMENSIONLESS) –[\(\gamma_{M1}\)] Partial factor according to 5.1.1 (4) [\(-\)].
-
chi(DIMENSIONLESS) –[\(\chi\)] Buckling coefficient from 6.3.1.2 of EN 1993-1-1 [\(-\)].
-
m_c_rd(KNM) –[\(kNm\)] Design moment resistance of the cross-section [\(kNm\)]. See 5.2.2 (2). This can also be calculated using Form5Dot2DesignMomentResistanceClass1Or2 or Form5Dot3DesignMomentResistanceClass3.
Source code in blueprints/codes/eurocode/en_1993_5_2007/chapter_5_ultimate_limit_states/formula_5_13.py
17 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 55 56 57 58 59 60 61 62 | |
codes.eurocode.en_1993_5_2007.chapter_5_ultimate_limit_states.formula_5_13.Form5Dot13SimplifiedBucklingCheck.latex
latex(n: int = 2) -> LatexFormula
Returns LatexFormula object for formula 5.13.
Source code in blueprints/codes/eurocode/en_1993_5_2007/chapter_5_ultimate_limit_states/formula_5_13.py
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | |