Skip to content

formula_3_3

codes.eurocode.en_1992_1_1_2004.chapter_3_materials.formula_3_3

Formula 3.3 from EN 1992-1-1:2004: Chapter 3 - Materials.

Classes:

codes.eurocode.en_1992_1_1_2004.chapter_3_materials.formula_3_3.Form3Dot3AxialTensileStrengthFromTensileSplittingStrength

Form3Dot3AxialTensileStrengthFromTensileSplittingStrength(f_ct_sp: MPA)

Bases: Formula

Class representing formula 3.3 for the approximated axial tensile strength, [\(f_{ct}\)], determined by tensile splitting strength.

[\(f_{ct}\)] The approximated axial tensile strength when tensile strength is determined as coefficient which is dependent of the age of concrete [\(MPa\)].

EN 1992-1-1:2004 art.3.1.2(8) - Formula (3.3)

Parameters:

  • f_ct_sp (MPA) –

    [\(f_{ct,sp}\)] Tensile strength determined by tensile splitting strength [\(MPa\)].

Returns:

  • None
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_3_materials/formula_3_3.py
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
def __init__(
    self,
    f_ct_sp: MPA,
) -> None:
    r"""[$f_{ct}$] The approximated axial tensile strength when tensile strength is determined as coefficient
    which is dependent of the age of concrete [$MPa$].

    EN 1992-1-1:2004 art.3.1.2(8) - Formula (3.3)

    Parameters
    ----------
    f_ct_sp : MPA
        [$f_{ct,sp}$] Tensile strength determined by tensile splitting strength [$MPa$].

    Returns
    -------
    None
    """
    super().__init__()
    self.f_ct_sp = f_ct_sp

codes.eurocode.en_1992_1_1_2004.chapter_3_materials.formula_3_3.Form3Dot3AxialTensileStrengthFromTensileSplittingStrength.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 3.3.

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_3_materials/formula_3_3.py
45
46
47
48
49
50
51
52
53
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 3.3."""
    return LatexFormula(
        return_symbol=r"f_{ct}",
        result=f"{self:.{n}f}",
        equation=r"0.9 \cdot f_{ct,sp}",
        numeric_equation=rf"0.9 \cdot {self.f_ct_sp:.{n}f}",
        comparison_operator_label="=",
    )