Skip to content

formula_6_33

codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_33

Formula 6.33 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_33.Form6Dot33ContourRadiusCircularColumnHeads

Form6Dot33ContourRadiusCircularColumnHeads(d: MM, l_h: MM, c: MM)

Bases: Formula

Class representing formula 6.33 for the calculation of the contour radius for circular column heads, [\(r_{cont}\)].

[\(r_{cont}\)] Contour radius for circular column heads [\(mm\)].

EN 1992-1-1:2004 art.6.4.2(8) - Formula (6.33)

Parameters:

  • d (MM) –

    [\(d\)] Effective depth [\(mm\)].

  • l_h (MM) –

    [\(l_{H}\)] Distance from the column face to the edge of the column head [\(mm\)].

  • c (MM) –

    [\(c\)] Diameter of a circular column [\(mm\)].

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_33.py
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
def __init__(
    self,
    d: MM,
    l_h: MM,
    c: MM,
) -> None:
    r"""[$r_{cont}$] Contour radius for circular column heads [$mm$].

    EN 1992-1-1:2004 art.6.4.2(8) - Formula (6.33)

    Parameters
    ----------
    d : MM
        [$d$] Effective depth [$mm$].
    l_h : MM
        [$l_{H}$] Distance from the column face to the edge of the column head [$mm$].
    c : MM
        [$c$] Diameter of a circular column [$mm$].
    """
    super().__init__()
    self.d = d
    self.l_h = l_h
    self.c = c

codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_33.Form6Dot33ContourRadiusCircularColumnHeads.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 6.33.

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_33.py
55
56
57
58
59
60
61
62
63
64
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 6.33."""
    return LatexFormula(
        return_symbol=r"r_{cont}",
        result=f"{self:.{n}f}",
        equation=r"2 \cdot d + l_{H} + 0.5 \cdot c",
        numeric_equation=rf"2 \cdot {self.d:.{n}f} + {self.l_h:.{n}f} + 0.5 \cdot {self.c:.{n}f}",
        comparison_operator_label="=",
        unit="mm",
    )