Skip to content

formula_6_29

codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_29

Formula 6.29 from EN 1992-1-1:2004: Chapter 6 - Ultimate Limit State.

Classes:

codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_29.Form6Dot29CheckTorsionShearResistance

Form6Dot29CheckTorsionShearResistance(
    t_ed: NM, v_ed: N, t_rd_max: NM, v_rd_max: N
)

Bases: Formula

Class representing formula 6.29 for checking the maximum resistance of a member subjected to torsion and shear.

Check the maximum resistance of a member subjected to torsion and shear.

EN 1992-1-1:2004 art.6.3.2(4) - Formula (6.29)

Parameters:

  • t_ed (NM) –

    [\(T_{Ed}\)] Design torsional moment [\(Nm\)].

  • v_ed (N) –

    [\(V_{Ed}\)] Design transverse force [\(N\)].

  • t_rd_max (NM) –

    [\(T_{Rd,max}\)] Design torsional resistance moment according to equation 6.30 [\(Nm\)].

  • v_rd_max (N) –

    [\(V_{Rd,max}\)] Maximum design shear resistance according to Expressions (6.9) or (6.14) [\(N\)].

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_29.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
def __init__(
    self,
    t_ed: NM,
    v_ed: N,
    t_rd_max: NM,
    v_rd_max: N,
) -> None:
    r"""Check the maximum resistance of a member subjected to torsion and shear.

    EN 1992-1-1:2004 art.6.3.2(4) - Formula (6.29)

    Parameters
    ----------
    t_ed : NM
        [$T_{Ed}$] Design torsional moment [$Nm$].
    v_ed : N
        [$V_{Ed}$] Design transverse force [$N$].
    t_rd_max : NM
        [$T_{Rd,max}$] Design torsional resistance moment according to equation 6.30 [$Nm$].
    v_rd_max : N
        [$V_{Rd,max}$] Maximum design shear resistance according to Expressions (6.9) or (6.14) [$N$].
    """
    super().__init__()
    self.t_ed = t_ed
    self.v_ed = v_ed
    self.t_rd_max = t_rd_max
    self.v_rd_max = v_rd_max

codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_29.Form6Dot29CheckTorsionShearResistance.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 6.29.

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_29.py
57
58
59
60
61
62
63
64
65
66
67
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 6.29."""
    return LatexFormula(
        return_symbol=r"CHECK",
        result="OK" if self.__bool__() else "\\text{Not OK}",
        equation=r"\left( \frac{T_{Ed}}{T_{Rd,max}} + \frac{V_{Ed}}{V_{Rd,max}} \leq 1 \right)",
        numeric_equation=rf"\left( \frac{{{self.t_ed:.{n}f}}}{{{self.t_rd_max:.{n}f}}} + "
        rf"\frac{{{self.v_ed:.{n}f}}}{{{self.v_rd_max:.{n}f}}} \leq 1 \right)",
        comparison_operator_label="\\to",
        unit="",
    )