Skip to content

formula_6_37_38

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_37_38

Formulas 6.37 and 6.38 from EN 1993-1-1:2005: Chapter 6 - Ultimate limit state.

Classes:

  • Form6Dot37And38MomentReduction

    Class representing formulas 6.37 and 6.38 for the calculation of reduced bending moment.

  • Form6Dot38A

    Class representing formula 6.38 for the calculation of [\(a\)].

  • Form6Dot38N

    Class representing formula 6.38 for the calculation of [\(n\)].

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_37_38.Form6Dot37And38MomentReduction

Form6Dot37And38MomentReduction(
    mpl_z_rd: NMM, a: DIMENSIONLESS, n: DIMENSIONLESS
)

Bases: Formula

Class representing formulas 6.37 and 6.38 for the calculation of reduced bending moment.

[\(M_{N,z,Rd}\)] Reduced bending moment [\(Nmm\)].

EN 1993-1-1:2005 art.6.2.9.1(5) - Formulas (6.37 and 6.38)

Parameters:

  • mpl_z_rd (NMM) –

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

  • a (DIMENSIONLESS) –

    Reduction factor for cross-sectional area, see equation 6.38a (Form6Dot38A) [-].

  • n (DIMENSIONLESS) –

    Axial force ratio, see equation 6.38n (Form6Dot38N) [-].

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_37_38.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,
    a: DIMENSIONLESS,
    n: DIMENSIONLESS,
) -> None:
    r"""[$M_{N,z,Rd}$] Reduced bending moment [$Nmm$].

    EN 1993-1-1:2005 art.6.2.9.1(5) - Formulas (6.37 and 6.38)

    Parameters
    ----------
    mpl_z_rd : NMM
        [$M_{pl,z,Rd}$] Plastic bending moment about the z-axis [$Nmm$].
    a : DIMENSIONLESS
        Reduction factor for cross-sectional area, see equation 6.38a (`Form6Dot38A`) [-].
    n : DIMENSIONLESS
        Axial force ratio, see equation 6.38n (`Form6Dot38N`) [-].
    """
    super().__init__()
    self.mpl_z_rd = mpl_z_rd
    self.a = a
    self.n = n

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_37_38.Form6Dot37And38MomentReduction.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formulas 6.37 and 6.38.

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_37_38.py
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
84
85
86
87
88
89
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formulas 6.37 and 6.38."""
    _equation: str = (
        r"\begin{cases} M_{pl,z,Rd} & \text{if } n \leq a \\ "
        r"M_{pl,z,Rd} \cdot \left[1 - \left(\frac{ n - a}{1 - a}\right)^2\right] & \text{if } n > a \end{cases}"
    )
    _numeric_equation: str = latex_replace_symbols(
        _equation,
        {
            "M_{pl,z,Rd}": f"{self.mpl_z_rd:.{n}f}",
            " n": f" {self.n:.{n}f}",
            " a": f" {self.a:.{n}f}",
        },
        False,
    )
    _numeric_equation_with_units: str = latex_replace_symbols(
        _equation,
        {
            "M_{pl,z,Rd}": rf"{self.mpl_z_rd:.{n}f} \ Nmm",
            " n": rf" {self.n:.{n}f}",
            " a": rf" {self.a:.{n}f}",
        },
        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="=",
        unit="Nmm",
    )

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_37_38.Form6Dot38A

Form6Dot38A(capital_a: MM2, b: MM, tf: MM)

Bases: Formula

Class representing formula 6.38 for the calculation of [\(a\)].

[\(a\)] Reduction factor for cross-sectional area [dimensionless].

EN 1993-1-1:2005 art.6.2.9(5) - Formula (6.38a)

Parameters:

  • capital_a (MM2) –

    [\(A\)] Cross-sectional area [\(mm^2\)].

  • b (MM) –

    [\(b\)] Width of the cross-section [\(mm\)].

  • tf (MM) –

    [\(t_f\)] Thickness of the flange [\(mm\)].

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_37_38.py
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
def __init__(self, capital_a: MM2, b: MM, tf: MM) -> None:
    r"""[$a$] Reduction factor for cross-sectional area [dimensionless].

    EN 1993-1-1:2005 art.6.2.9(5) - Formula (6.38a)

    Parameters
    ----------
    capital_a : MM2
        [$A$] Cross-sectional area [$mm^2$].
    b : MM
        [$b$] Width of the cross-section [$mm$].
    tf : MM
        [$t_f$] Thickness of the flange [$mm$].
    """
    super().__init__()
    self.capital_a = capital_a
    self.b = b
    self.tf = tf

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_37_38.Form6Dot38A.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 6.38a.

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_37_38.py
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 6.38a."""
    _equation: str = r"\min\left(\frac{A - 2 \cdot b \cdot t_f}{A}, 0.5\right)"
    _numeric_equation: str = latex_replace_symbols(
        _equation,
        {
            r"A": f"{self.capital_a:.{n}f}",
            r"b": f"{self.b:.{n}f}",
            r"t_f": f"{self.tf:.{n}f}",
        },
        False,
    )
    _numeric_equation_with_units: str = latex_replace_symbols(
        _equation,
        {
            r"A": rf"{self.capital_a:.{n}f} \ mm^2",
            r"b": rf"{self.b:.{n}f} \ mm",
            r"t_f": rf"{self.tf:.{n}f} \ mm",
        },
        False,
    )
    return LatexFormula(
        return_symbol=r"a",
        result=f"{self:.{n}f}",
        equation=_equation,
        numeric_equation=_numeric_equation,
        numeric_equation_with_units=_numeric_equation_with_units,
        comparison_operator_label="=",
        unit="-",
    )

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_37_38.Form6Dot38N

Form6Dot38N(n_ed: N, n_pl_rd: N)

Bases: Formula

Class representing formula 6.38 for the calculation of [\(n\)].

[\(n\)] Axial force ratio [dimensionless].

EN 1993-1-1:2005 art.6.2.9(5) - Formula (6.38n)

Parameters:

  • n_ed (N) –

    [\(N_{Ed}\)] Design axial force [\(N\)].

  • n_pl_rd (N) –

    [\(N_{pl,Rd}\)] Plastic resistance of the cross-section [\(N\)].

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_37_38.py
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
def __init__(self, n_ed: N, n_pl_rd: N) -> None:
    r"""[$n$] Axial force ratio [dimensionless].

    EN 1993-1-1:2005 art.6.2.9(5) - Formula (6.38n)

    Parameters
    ----------
    n_ed : N
        [$N_{Ed}$] Design axial force [$N$].
    n_pl_rd : N
        [$N_{pl,Rd}$] Plastic resistance of the cross-section [$N$].
    """
    super().__init__()
    self.n_ed = n_ed
    self.n_pl_rd = n_pl_rd

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_37_38.Form6Dot38N.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 6.38n.

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_37_38.py
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 6.38n."""
    _equation: str = r"\frac{N_{Ed}}{N_{pl,Rd}}"
    _numeric_equation: str = latex_replace_symbols(
        _equation,
        {
            r"N_{Ed}": f"{self.n_ed:.{n}f}",
            r"N_{pl,Rd}": f"{self.n_pl_rd:.{n}f}",
        },
        False,
    )
    _numeric_equation_with_units: str = latex_replace_symbols(
        _equation,
        {
            r"N_{Ed}": rf"{self.n_ed:.{n}f} \ N",
            r"N_{pl,Rd}": rf"{self.n_pl_rd:.{n}f} \ N",
        },
        True,
    )
    return LatexFormula(
        return_symbol=r"n",
        result=f"{self:.{n}f}",
        equation=_equation,
        numeric_equation=_numeric_equation,
        numeric_equation_with_units=_numeric_equation_with_units,
        comparison_operator_label="=",
        unit="-",
    )