Skip to content

formula_3_1

codes.eurocode.en_1992_1_1_2004.chapter_3_materials.formula_3_1

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

Classes:

codes.eurocode.en_1992_1_1_2004.chapter_3_materials.formula_3_1.Form3Dot1EstimationConcreteCompressiveStrength

Form3Dot1EstimationConcreteCompressiveStrength(
    beta_cc_t: DIMENSIONLESS, f_cm: MPA
)

Bases: Formula

Class representing formula 3.1 for the estimation of the concrete compressive strength, [\(f_{cm}(t)\)], after t days with an average temperature of 20 degrees Celsius.

[\(f_{cm}(t)\)] The estimated concrete compressive strength [\(MPa\)].

EN 1992-1-1:2004 art.3.1.2(6) - Formula (3.1)

Parameters:

  • beta_cc_t (DIMENSIONLESS) –

    [\(\beta_{cc}(t)\)] Coefficient dependent of the age of concrete [\(-\)].

  • f_cm (MPA) –

    [\(f_{cm}\)] Average concrete compressive strength on day 28 based on table 3.1 [\(MPa\)].

Returns:

  • None
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_3_materials/formula_3_1.py
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
def __init__(
    self,
    beta_cc_t: DIMENSIONLESS,
    f_cm: MPA,
) -> None:
    r"""[$f_{cm}(t)$] The estimated concrete compressive strength [$MPa$].

    EN 1992-1-1:2004 art.3.1.2(6) - Formula (3.1)

    Parameters
    ----------
    beta_cc_t : DIMENSIONLESS
        [$\beta_{cc}(t)$] Coefficient dependent of the age of concrete [$-$].
    f_cm : MPA
        [$f_{cm}$] Average concrete compressive strength on day 28 based on table 3.1 [$MPa$].

    Returns
    -------
    None
    """
    super().__init__()
    self.beta_cc_t = beta_cc_t
    self.f_cm = f_cm

codes.eurocode.en_1992_1_1_2004.chapter_3_materials.formula_3_1.Form3Dot1EstimationConcreteCompressiveStrength.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 3.1.

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_3_materials/formula_3_1.py
51
52
53
54
55
56
57
58
59
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 3.1."""
    return LatexFormula(
        return_symbol=r"f_{cm}(t)",
        result=f"{self:.{n}f}",
        equation=r"\beta_{cc}(t) \cdot f_{cm}",
        numeric_equation=rf"{self.beta_cc_t:.{n}f} \cdot {self.f_cm:.{n}f}",
        comparison_operator_label="=",
    )