Skip to content

formula_9_10

codes.eurocode.en_1992_1_1_2004.chapter_9_detailling_and_specific_rules.formula_9_10

Formula 9.10 from EN 1992-1-1:2004: Chapter 9 - Detailing and specific rules.

Classes:

codes.eurocode.en_1992_1_1_2004.chapter_9_detailling_and_specific_rules.formula_9_10.Form9Dot10MaximumSpacingBentUpBars

Form9Dot10MaximumSpacingBentUpBars(d: MM)

Bases: Formula

Class representing the formula 9.10 for the calculation of the maximum longitudinal spacing of bent up bars for slabs.

[\(s_{max}\)] Maximum longitudinal spacing of bent up bars for slabs [\(mm\)].

EN 1992-1-1:2004 art.9.3.2(4) - Formula (9.10)

Parameters:

  • d (MM) –

    [\(d\)] Effective height of the cross-section [\(mm\)].

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_9_detailling_and_specific_rules/formula_9_10.py
16
17
18
19
20
21
22
23
24
25
26
27
def __init__(self, d: MM) -> None:
    r"""[$s_{max}$] Maximum longitudinal spacing of bent up bars for slabs [$mm$].

    EN 1992-1-1:2004 art.9.3.2(4) - Formula (9.10)

    Parameters
    ----------
    d: MM
        [$d$] Effective height of the cross-section [$mm$].
    """
    super().__init__()
    self.d = d

codes.eurocode.en_1992_1_1_2004.chapter_9_detailling_and_specific_rules.formula_9_10.Form9Dot10MaximumSpacingBentUpBars.latex

latex(n: int = 2) -> LatexFormula

Returns LatexFormula object for formula 9.10.

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_9_detailling_and_specific_rules/formula_9_10.py
35
36
37
38
39
40
41
42
43
def latex(self, n: int = 2) -> LatexFormula:
    """Returns LatexFormula object for formula 9.10."""
    return LatexFormula(
        return_symbol=r"s_{max}",
        result=f"{self:.{n}f}",
        equation=r"d",
        numeric_equation=rf"{self.d:.{n}f}",
        comparison_operator_label="=",
    )