Skip to content

formula_8_7

codes.eurocode.en_1992_1_1_2004.chapter_8_detailing_of_reinforcement_and_prestressing_tendons.formula_8_7

Formula 8.7 from EN 1992-1-1:2004: Chapter 8: Detailing of reinforcement and prestressing tendons.

Classes:

codes.eurocode.en_1992_1_1_2004.chapter_8_detailing_of_reinforcement_and_prestressing_tendons.formula_8_7.Form8Dot7MinimumCompressionAnchorage

Form8Dot7MinimumCompressionAnchorage(l_b_rqd: MM, diameter: MM)

Bases: Formula

Class representing formula 8.7 for the calculation of the minimum anchorage length if no other limitation is applied for anchorage in compression.

[\(l_{b,min}\)] Minimum anchorage length if no other limitation is applied for anchorage in compression. [\(mm\)].

EN 1992-1-1:2004 art.8.4.4(1) - Formula (8.7)

Parameters:

  • l_b_rqd (MM) –

    [\(l_{b,rqd}\)] Basic required anchorage length, for anchoring the force [\(A_s \cdot \sigma_{sd}\)] in a straight bar assuming constant bond stress (formula 8.3) [\(mm\)]. Use your own implementation for this value or use the Form8Dot3RequiredAnchorageLength class.

  • diameter (MM) –

    [\(Ø\)] Diameter of the bar [\(mm\)].

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_8_detailing_of_reinforcement_and_prestressing_tendons/formula_8_7.py
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_b_rqd: MM,
    diameter: MM,
) -> None:
    r"""[$l_{b,min}$] Minimum anchorage length if no other limitation is applied for anchorage in compression. [$mm$].

    EN 1992-1-1:2004 art.8.4.4(1) - Formula (8.7)

    Parameters
    ----------
    l_b_rqd: MM
        [$l_{b,rqd}$] Basic required anchorage length, for anchoring the force [$A_s \cdot \sigma_{sd}$] in a straight bar assuming constant
        bond stress (formula 8.3) [$mm$].
        Use your own implementation for this value or use the Form8Dot3RequiredAnchorageLength class.
    diameter: MM
        [$Ø$] Diameter of the bar [$mm$].
    """
    super().__init__()
    self.l_b_rqd = l_b_rqd
    self.diameter = diameter

codes.eurocode.en_1992_1_1_2004.chapter_8_detailing_of_reinforcement_and_prestressing_tendons.formula_8_7.Form8Dot7MinimumCompressionAnchorage.latex

latex(n: int = 2) -> LatexFormula

Returns a LatexFormula object for this formula.

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_8_detailing_of_reinforcement_and_prestressing_tendons/formula_8_7.py
46
47
48
49
50
51
52
53
54
55
56
57
58
def latex(self, n: int = 2) -> LatexFormula:
    """Returns a LatexFormula object for this formula."""
    return LatexFormula(
        return_symbol=r"l_{b,min}",
        result=f"{self:.{n}f}",
        equation=latex_max_curly_brackets(r"0.6 \cdot l_{b,rqd}", r"10 \cdot Ø", r"100 \ \text{mm}"),
        numeric_equation=latex_max_curly_brackets(
            rf"0.6 \cdot {self.l_b_rqd:.{n}f}",
            rf"10 \cdot {self.diameter}",
            r"100",
        ),
        comparison_operator_label="=",
    )