Skip to content

formula_8_23

codes.eurocode.en_1993_1_1_2022.chapter_8_ultimate_limit_state.formula_8_23

Formula 8.23 from EN 1993-1-1:2022: Chapter 8 - Ultimate Limit State.

Classes:

codes.eurocode.en_1993_1_1_2022.chapter_8_ultimate_limit_state.formula_8_23.Form8Dot23DesignPlasticShearResistance

Form8Dot23DesignPlasticShearResistance(
    a_v: MM2, f_y: MPA, gamma_m0: DIMENSIONLESS
)

Bases: Formula

Class representing formula 8.23 for the calculation of [\(V_{pl,Rd}\)].

[\(V_{pl,Rd}\)] Calculation of the design plastic shear resistance [\(N\)].

EN 1993-1-1:2022 art.8.2.6(2) - Formula (8.23)

Parameters:

  • a_v (MM2) –

    [\(A_v\)] Shear area, to be taken from a subformula from 8.23 [\(mm^2\)].

  • f_y (MPA) –

    [\(f_y\)] Yield strength of the material [\(MPa\)].

  • gamma_m0 (DIMENSIONLESS) –

    [\(\gamma_{M0}\)] Partial safety factor for resistance of cross-sections.

Source code in blueprints/codes/eurocode/en_1993_1_1_2022/chapter_8_ultimate_limit_state/formula_8_23.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,
    a_v: MM2,
    f_y: MPA,
    gamma_m0: DIMENSIONLESS,
) -> None:
    r"""[$V_{pl,Rd}$] Calculation of the design plastic shear resistance [$N$].

    EN 1993-1-1:2022 art.8.2.6(2) - Formula (8.23)

    Parameters
    ----------
    a_v : MM2
        [$A_v$] Shear area, to be taken from a subformula from 8.23 [$mm^2$].
    f_y : MPA
        [$f_y$] Yield strength of the material [$MPa$].
    gamma_m0 : DIMENSIONLESS
        [$\gamma_{M0}$] Partial safety factor for resistance of cross-sections.
    """
    super().__init__()
    self.a_v = a_v
    self.f_y = f_y
    self.gamma_m0 = gamma_m0

codes.eurocode.en_1993_1_1_2022.chapter_8_ultimate_limit_state.formula_8_23.Form8Dot23DesignPlasticShearResistance.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 8.23.

Source code in blueprints/codes/eurocode/en_1993_1_1_2022/chapter_8_ultimate_limit_state/formula_8_23.py
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 8.23."""
    _equation: str = r"\frac{A_v \cdot (f_y / \sqrt{3})}{\gamma_{M0}}"
    _numeric_equation: str = latex_replace_symbols(
        _equation,
        {
            r"A_v": f"{self.a_v:.{n}f}",
            r"f_y": f"{self.f_y:.{n}f}",
            r"\gamma_{M0}": f"{self.gamma_m0:.{n}f}",
        },
        False,
    )
    _numeric_equation_with_units: str = latex_replace_symbols(
        _equation,
        {
            r"A_v": rf"{self.a_v:.{n}f} \ mm^2",
            r"f_y": rf"{self.f_y:.{n}f} \ MPa",
            r"\gamma_{M0}": f"{self.gamma_m0:.{n}f}",
        },
        False,
    )
    return LatexFormula(
        return_symbol=r"V_{pl,Rd}",
        result=f"{self:.{n}f}",
        equation=_equation,
        numeric_equation=_numeric_equation,
        numeric_equation_with_units=_numeric_equation_with_units,
        comparison_operator_label="=",
        unit="N",
    )