Skip to content

table_4_2

codes.eurocode.en_1992_1_1_2004.chapter_4_durability_and_cover.table_4_2

Table 4.2 from EN 1992-1-1:2004: Chapter 4 - Durability and cover to reinforcement.

Classes:

codes.eurocode.en_1992_1_1_2004.chapter_4_durability_and_cover.table_4_2.Table4Dot2MinimumCoverWithRegardToBond

Table4Dot2MinimumCoverWithRegardToBond(
    diameter: MM, nominal_max_aggregate_size_greater_than_32_mm: bool
)

Bases: Formula

Class representing the table 4.2 for the calculation of the minimum cover [\(c_{min,b}\)] [\(mm\)] requirements with regard to bond.

[\(c_{min,b}\)] Calculates the minimum concrete cover with regard to bond [\(mm\)].

EN 1992-1-1:2004 art.4.4.1.2 (3) - Table (4.2)

Parameters:

  • diameter (MM) –

    Diameter of the reinforcement [\(mm\)]. In case of bundled bars, the equivalent diameter [\(Ø_{n}\)] as defined in par. 8.9.1 should be used. Use your own implementation of this value or use the :class:Form8Dot14EquivalentDiameterBundledBars class.

  • nominal_max_aggregate_size_greater_than_32_mm (bool) –

    Is the nominal maximum aggregate size greater than 32 [\(mm\)]?

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_4_durability_and_cover/table_4_2.py
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
def __init__(
    self,
    diameter: MM,
    nominal_max_aggregate_size_greater_than_32_mm: bool,
) -> None:
    r"""[$c_{min,b}$] Calculates the minimum concrete cover with regard to bond [$mm$].

    EN 1992-1-1:2004 art.4.4.1.2 (3) - Table (4.2)

    Parameters
    ----------
    diameter: MM
        Diameter of the reinforcement [$mm$].
        In case of bundled bars, the equivalent diameter [$Ø_{n}$] as defined in par. 8.9.1 should be used.
        Use your own implementation of this value or use the :class:`Form8Dot14EquivalentDiameterBundledBars` class.
    nominal_max_aggregate_size_greater_than_32_mm: bool
        Is the nominal maximum aggregate size greater than 32 [$mm$]?
    """
    super().__init__()
    self.diameter = diameter
    self.nominal_max_aggregate_size_greater_than_32_mm = nominal_max_aggregate_size_greater_than_32_mm

codes.eurocode.en_1992_1_1_2004.chapter_4_durability_and_cover.table_4_2.Table4Dot2MinimumCoverWithRegardToBond.latex

latex(n: int = 0) -> LatexFormula

Returns LatexFormula object for table 4.2.

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_4_durability_and_cover/table_4_2.py
49
50
51
52
53
54
55
56
57
58
def latex(self, n: int = 0) -> LatexFormula:
    """Returns LatexFormula object for table 4.2."""
    suffix = " + 5" if self.nominal_max_aggregate_size_greater_than_32_mm else ""
    return LatexFormula(
        return_symbol=r"c_{min,b}",
        result=f"{self:.{n}f}",
        equation=r"\text{(equivalent) rebar diameter}" + suffix,
        numeric_equation=f"{self.diameter}" + suffix,
        comparison_operator_label="=",
    )