Skip to content

formula_6_56

codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_56

Formula 6.56 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_56.Form6Dot56DesignStrengthConcreteStrussTransverseTension

Form6Dot56DesignStrengthConcreteStrussTransverseTension(
    nu_prime: DIMENSIONLESS, f_cd: MPA
)

Bases: Formula

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

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

EN 1992-1-1:2004 art.6.5.2(2) - Formula (6.56)

Parameters:

  • nu_prime (float) –

    [\(\nu'\)] Factor for transverse tension [-]. The value of \(\nu'\) for use in a Country may be found in its National Annex. The recommended value is given by equation (6.57N).

  • f_cd (float) –

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

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_56.py
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
def __init__(
    self,
    nu_prime: DIMENSIONLESS,
    f_cd: MPA,
) -> None:
    r"""[$\sigma_{Rd,max}$] Calculation of [$\sigma_{Rd,max}$].

    EN 1992-1-1:2004 art.6.5.2(2) - Formula (6.56)

    Parameters
    ----------
    nu_prime : float
        [$\nu'$] Factor for transverse tension [-]. The value of $\nu'$ for use in a Country may be found in its National Annex.
        The recommended value is given by equation (6.57N).
    f_cd : float
        [$f_{cd}$] Design compressive strength of concrete [$MPa$].
    """
    super().__init__()
    self.nu_prime = nu_prime
    self.f_cd = f_cd

codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_56.Form6Dot56DesignStrengthConcreteStrussTransverseTension.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 6.56.

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_56.py
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 6.56."""
    _equation: str = r"0.6 \cdot \nu' \cdot f_{cd}"
    _numeric_equation: str = latex_replace_symbols(
        _equation,
        {
            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",
    )