Skip to content

formula_6_42

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_42

Formula 6.42 from EN 1993-1-1:2005: Chapter 6 - Ultimate limit state.

Classes:

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_42.Form6Dot42LongitudinalStressClass3CrossSections

Form6Dot42LongitudinalStressClass3CrossSections(
    sigma_x_ed: MPA, f_y: MPA, gamma_m0: DIMENSIONLESS
)

Bases: ComparisonFormula

Class representing formula 6.42 for Class 3 cross-sections: [\(\sigma_{x,Ed} \leq \frac{f_y}{\gamma_{M0}}\)].

Longitudinal stress check for Class 3 cross-sections in the absence of shear force. The maximum longitudinal stress [\(\sigma_{x,Ed}\)] should not exceed the yield strength divided by the partial safety factor [\(\frac{f_y}{\gamma_{M0}}\)].

EN 1993-1-1:2005 art. 6.2.9.2 (1) - Formula (6.42)

Parameters:

  • sigma_x_ed (MPA) –

    [\(\sigma_{x,Ed}\)] Design value of the local longitudinal stress due to moment and axial force taking account of fastener holes where relevant [\(MPa\)].

  • 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_2005/chapter_6_ultimate_limit_state/formula_6_42.py
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
def __init__(
    self,
    sigma_x_ed: MPA,
    f_y: MPA,
    gamma_m0: DIMENSIONLESS,
) -> None:
    r"""Longitudinal stress check for Class 3 cross-sections in the absence of shear force.
    The maximum longitudinal stress [$\sigma_{x,Ed}$] should not exceed the yield strength
    divided by the partial safety factor [$\frac{f_y}{\gamma_{M0}}$].

    EN 1993-1-1:2005 art. 6.2.9.2 (1) - Formula (6.42)

    Parameters
    ----------
    sigma_x_ed : MPA
        [$\sigma_{x,Ed}$] Design value of the local longitudinal stress due to moment and axial force
        taking account of fastener holes where relevant [$MPa$].
    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.sigma_x_ed = sigma_x_ed
    self.f_y = f_y
    self.gamma_m0 = gamma_m0

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_42.Form6Dot42LongitudinalStressClass3CrossSections.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 6.42.

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_42.py
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 6.42."""
    _equation: str = r"\sigma_{x,Ed} \leq \frac{f_y}{\gamma_{M0}}"
    _numeric_equation: str = latex_replace_symbols(
        _equation,
        {
            r"\sigma_{x,Ed}": f"{self.sigma_x_ed:.{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"\sigma_{x,Ed}": rf"{self.sigma_x_ed:.{n}f} \ MPa",
            r"f_y": rf"{self.f_y:.{n}f} \ MPa",
            r"\gamma_{M0}": rf"{self.gamma_m0:.{n}f}",
        },
        False,
    )
    return LatexFormula(
        return_symbol=r"CHECK",
        result="OK" if bool(self) else r"\text{Not OK}",
        equation=_equation,
        numeric_equation=_numeric_equation,
        numeric_equation_with_units=_numeric_equation_with_units,
        comparison_operator_label=r"\to",
        unit=r"",
    )