Skip to content

formula_9_7n

codes.eurocode.en_1992_1_1_2004.chapter_9_detailling_and_specific_rules.formula_9_7n

Formula 9.7N from EN 1992-1-1:2004: Chapter 9 - Detailing of members and particular rules.

Classes:

codes.eurocode.en_1992_1_1_2004.chapter_9_detailling_and_specific_rules.formula_9_7n.Form9Dot7nMaximumDistanceBentUpBars

Form9Dot7nMaximumDistanceBentUpBars(d: MM, alpha: DEG)

Bases: Formula

Class representing the formula 9.7N for the calculation of the maximum distance between bent-up bars in longitudinal direction.

[\(s_{b,max}\)] Maximum distance between bent-up bars in longitudinal direction [\(mm\)].

EN 1992-1-1:2004 art.9.2.2(7) - Formula (9.7N)

Parameters:

  • d (MM) –

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

  • alpha (DEG) –

    [\(\alpha\)] The angle between the shear reinforcement and the longitudinal axis of the beam (see 9.2.2(1)) [\(deg\)].

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_9_detailling_and_specific_rules/formula_9_7n.py
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
def __init__(
    self,
    d: MM,
    alpha: DEG,
) -> None:
    r"""[$s_{b,max}$] Maximum distance between bent-up bars in longitudinal direction [$mm$].

    EN 1992-1-1:2004 art.9.2.2(7) - Formula (9.7N)

    Parameters
    ----------
    d: MM
        [$d$] Effective height of the cross-section [$mm$].
    alpha: DEG
        [$\alpha$] The angle between the shear reinforcement and the longitudinal axis of the beam (see 9.2.2(1)) [$deg$].
    """
    super().__init__()
    self.d = d
    self.alpha = alpha

codes.eurocode.en_1992_1_1_2004.chapter_9_detailling_and_specific_rules.formula_9_7n.Form9Dot7nMaximumDistanceBentUpBars.latex

latex(n: int = 2) -> LatexFormula

Returns LatexFormula object for formula 9.7N.

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_9_detailling_and_specific_rules/formula_9_7n.py
52
53
54
55
56
57
58
59
60
def latex(self, n: int = 2) -> LatexFormula:
    """Returns LatexFormula object for formula 9.7N."""
    return LatexFormula(
        return_symbol=r"s_{b,max}",
        result=f"{self:.{n}f}",
        equation=r"0.6 \cdot d \cdot \left( 1 + cot(\alpha) \right)",
        numeric_equation=rf"0.6 \cdot {self.d:.{n}f} \cdot \left( 1 + cot({self.alpha:.{n}f}) \right)",
        comparison_operator_label="=",
    )