Skip to content

formula_6_17

codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_17

Formula 6.17 from EN 1992-1-1:2004: Chapter 6 - Ultimate limit state.

Classes:

  • Form6Dot17NominalWebWidth

    Class representing formula 6.17 for the calculation of the nominal web width (for non-grouted ducts, grouted plastic ducts

codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_17.Form6Dot17NominalWebWidth

Form6Dot17NominalWebWidth(b_w: MM, diameters: list[MM])

Bases: Formula

Class representing formula 6.17 for the calculation of the nominal web width (for non-grouted ducts, grouted plastic ducts and unbonded tendons), [\(b_{w,nom}\)].

[\(b_{w,nom}\)] Nominal web width [\(mm\)].

EN 1992-1-1:2004 art.6.2.3(6) - Formula (6.17)

Parameters:

  • b_w (MM) –

    [\(b_{w}\)] Web width [\(mm\)].

  • diameters (list[MM]) –

    [\(⌀\)] Diameters of the reinforcement bars for the most unfavourable level [\(mm\)].

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_17.py
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
def __init__(
    self,
    b_w: MM,
    diameters: list[MM],
) -> None:
    r"""[$b_{w,nom}$] Nominal web width [$mm$].

    EN 1992-1-1:2004 art.6.2.3(6) - Formula (6.17)

    Parameters
    ----------
    b_w : MM
        [$b_{w}$] Web width [$mm$].
    diameters : list[MM]
        [$⌀$] Diameters of the reinforcement bars for the most unfavourable level [$mm$].
    """
    super().__init__()
    self.b_w = b_w
    self.diameters: list[MM] = diameters

codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_17.Form6Dot17NominalWebWidth.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 6.17.

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_17.py
50
51
52
53
54
55
56
57
58
59
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 6.17."""
    return LatexFormula(
        return_symbol=r"b_{w,nom}",
        result=f"{self:.{n}f}",
        equation=r"b_{w} - 1.2 \cdot \sum(⌀)",
        numeric_equation=rf"{self.b_w:.{n}f} - 1.2 \cdot \left({' + '.join([f'{d:.{n}f}' for d in self.diameters])} \right)",
        comparison_operator_label="=",
        unit="mm",
    )