Skip to content

formula_6_36

codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_36

Formula 6.36 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_36.Form6Dot36ExternalContourRadiusCircularColumnHeads

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

Bases: Formula

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

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

EN 1992-1-1:2004 art.6.4.2(11) - Formula (6.36)

Parameters:

  • l_h (MM) –

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

  • d (MM) –

    [\(d\)] Effective depth [\(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_36.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,
    l_h: MM,
    d: MM,
    c: MM,
) -> None:
    r"""[$r_{cont,ext}$] Contour radius for circular column heads [$mm$].

    EN 1992-1-1:2004 art.6.4.2(11) - Formula (6.36)

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

codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_36.Form6Dot36ExternalContourRadiusCircularColumnHeads.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 6.36.

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