formula_6_41
codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_41
formula 6.41 from EN 1993-1-1:2005: chapter 6 - ultimate limit state.
Classes:
-
Form6Dot41BiaxialBendingCheck–class representing formula 6.41 for bi-axial bending.
codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_41.Form6Dot41BiaxialBendingCheck
Form6Dot41BiaxialBendingCheck(
my_ed: NMM,
m_n_y_rd: NMM,
mz_ed: NMM,
m_n_z_rd: NMM,
alpha: DIMENSIONLESS,
beta: DIMENSIONLESS,
)
Bases: Formula
class representing formula 6.41 for bi-axial bending.
Check the bi-axial bending criterion.
EN 1993-1-1:2005 art.6.2.9.1(6) - formula (6.41)
Parameters:
-
my_ed(NMM) –[\(m_{y,ed}\)] design bending moment about the y-axis [\(Nmm\)].
-
m_n_y_rd(NMM) –[\(m_{n,y,rd}\)] design resistance moment about the y-axis [\(Nmm\)].
-
mz_ed(NMM) –[\(m_{z,ed}\)] design bending moment about the z-axis [\(Nmm\)].
-
m_n_z_rd(NMM) –[\(m_{n,z,rd}\)] design resistance moment about the z-axis [\(Nmm\)].
-
alpha(DIMENSIONLESS) –[\(\alpha\)] exponent for the y-axis term.
-
beta(DIMENSIONLESS) –[\(\beta\)] exponent for the z-axis term.
In which \(\alpha\) and \(\beta\) are constants, which may conservatively be taken as unity, otherwise as follows: - I and H sections: \(\alpha = 2\) and \(\beta = 5 \cdot n\), but \(\beta \geq 1\). - Circular hollow sections: \(\alpha = 2\) and \(\beta = 2\). - Rectangular hollow sections: \(\alpha = \beta = \frac{1.66}{1-1.13 \cdot n^2}\), but \(\alpha = \beta \leq 6\).
Where \(n = N_{Ed} / N_{pl,Rd}\), see equation 6.38n.
Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_41.py
16 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 | |
codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_41.Form6Dot41BiaxialBendingCheck.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 6.41.
Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_41.py
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | |