Skip to content

formula_8_52

codes.eurocode.en_1993_1_1_2022.chapter_8_ultimate_limit_state.formula_8_52

Formula 8.52 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_52.Form8Dot52ReducedBendingMomentResistance

Form8Dot52ReducedBendingMomentResistance(
    mpl_z_rd: NMM, n: DIMENSIONLESS, a_f: DIMENSIONLESS
)

Bases: Formula

Class representing formula 8.52 for the calculation of [\(M_{N,z,Rd}\)].

[\(M_{N,z,Rd}\)] Calculation of the reduced bending moment [\(Nmm\)].

EN 1993-1-1:2022 art.8.2.9.1(6) - Formula (8.52)

Parameters:

  • mpl_z_rd (NMM) –

    [\(M_{pl,z,Rd}\)] Plastic bending moment resistance about the z-axis [\(Nmm\)].

  • n (DIMENSIONLESS) –

    [\(n\)] Axial force ratio, see equation 8.50n (dimensionless).

  • a_f (DIMENSIONLESS) –

    [\(a_f\)] Reduction factor for the flange (dimensionless).

Source code in blueprints/codes/eurocode/en_1993_1_1_2022/chapter_8_ultimate_limit_state/formula_8_52.py
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
def __init__(
    self,
    mpl_z_rd: NMM,
    n: DIMENSIONLESS,
    a_f: DIMENSIONLESS,
) -> None:
    r"""[$M_{N,z,Rd}$] Calculation of the reduced bending moment [$Nmm$].

    EN 1993-1-1:2022 art.8.2.9.1(6) - Formula (8.52)

    Parameters
    ----------
    mpl_z_rd : NMM
        [$M_{pl,z,Rd}$] Plastic bending moment resistance about the z-axis [$Nmm$].
    n : DIMENSIONLESS
        [$n$] Axial force ratio, see equation 8.50n (dimensionless).
    a_f : DIMENSIONLESS
        [$a_f$] Reduction factor for the flange (dimensionless).
    """
    super().__init__()
    self.mpl_z_rd = mpl_z_rd
    self.n = n
    self.a_f = a_f

codes.eurocode.en_1993_1_1_2022.chapter_8_ultimate_limit_state.formula_8_52.Form8Dot52ReducedBendingMomentResistance.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 8.52.

Source code in blueprints/codes/eurocode/en_1993_1_1_2022/chapter_8_ultimate_limit_state/formula_8_52.py
52
53
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
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 8.52."""
    _equation: str = r"\min \left( M_{pl,z,Rd} \cdot \frac{1 - n}{1 - 0.5 \cdot a_f}, M_{pl,z,Rd} \right)"
    _numeric_equation: str = latex_replace_symbols(
        _equation,
        replacements={
            r"M_{pl,z,Rd}": f"{self.mpl_z_rd:.{n}f}",
            r" n": f" {self.n:.{n}f}",
            r"a_f": f"{self.a_f:.{n}f}",
        },
        unique_symbol_check=False,
    )
    _numeric_equation_with_units: str = latex_replace_symbols(
        _equation,
        replacements={
            r"M_{pl,z,Rd}": rf"{self.mpl_z_rd:.{n}f} \ Nmm",
            r" n": rf" {self.n:.{n}f}",
            r"a_f": rf"{self.a_f:.{n}f}",
        },
        unique_symbol_check=False,
    )
    return LatexFormula(
        return_symbol=r"M_{N,z,Rd}",
        result=f"{self:.{n}f}",
        equation=_equation,
        numeric_equation=_numeric_equation,
        numeric_equation_with_units=_numeric_equation_with_units,
        comparison_operator_label=r"=",
        unit="Nmm",
    )