Skip to content

formula_6_60

codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_60

Formula 6.60 from EN 1992-1-1:2004: Chapter 6 - Ultimate Limit State.

Classes:

codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_60.Form6Dot60DesignValueCompressiveStressResistance

Form6Dot60DesignValueCompressiveStressResistance(
    k_1: DIMENSIONLESS, nu_prime: DIMENSIONLESS, f_cd: MPA
)

Bases: Formula

Class representing formula 6.60 for the calculation of [\(\sigma_{Rd,max}\)].

[\(\sigma_{Rd,max}\)] Calculation of [\(\sigma_{Rd,max}\)].

EN 1992-1-1:2004 art.6.5.4(4) - Formula (6.60)

Parameters:

  • k_1 (DIMENSIONLESS) –

    [\(k_1\)] Coefficient for the design value of compressive stress resistance [\(-\)]. Note: The value of [\(k_1\)] for use in a Country may be found in its National Annex. The recommended value is 1.0.

  • nu_prime (DIMENSIONLESS) –

    [\(\nu'\)] Reduction factor for the design value of compressive stress resistance [\(-\)].

  • f_cd (MPA) –

    [\(f_{cd}\)] Design value of compressive strength [\(MPa\)].

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_60.py
16
17
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,
    k_1: DIMENSIONLESS,
    nu_prime: DIMENSIONLESS,
    f_cd: MPA,
) -> None:
    r"""[$\sigma_{Rd,max}$] Calculation of [$\sigma_{Rd,max}$].

    EN 1992-1-1:2004 art.6.5.4(4) - Formula (6.60)

    Parameters
    ----------
    k_1 : DIMENSIONLESS
        [$k_1$] Coefficient for the design value of compressive stress resistance [$-$].
        Note: The value of [$k_1$] for use in a Country may be found in its National Annex.
        The recommended value is 1.0.
    nu_prime : DIMENSIONLESS
        [$\nu'$] Reduction factor for the design value of compressive stress resistance [$-$].
    f_cd : MPA
        [$f_{cd}$] Design value of compressive strength [$MPa$].
    """
    super().__init__()
    self.k_1 = k_1
    self.nu_prime = nu_prime
    self.f_cd = f_cd

codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_60.Form6Dot60DesignValueCompressiveStressResistance.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 6.60.

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_60.py
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 6.60."""
    _equation: str = r"k_1 \cdot \nu' \cdot f_{cd}"
    _numeric_equation: str = latex_replace_symbols(
        _equation,
        {
            r"k_1": f"{self.k_1:.{n}f}",
            r"\nu'": f"{self.nu_prime:.{n}f}",
            r"f_{cd}": f"{self.f_cd:.{n}f}",
        },
        False,
    )
    return LatexFormula(
        return_symbol=r"\sigma_{Rd,max}",
        result=f"{self:.{n}f}",
        equation=_equation,
        numeric_equation=_numeric_equation,
        comparison_operator_label="=",
        unit="MPa",
    )