Skip to content

formula_6_18_sub_av

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_18_sub_av

Subformula a through g from 6.18 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_18_sub_av.Form6Dot18SubARolledIandHSection

Form6Dot18SubARolledIandHSection(
    a: MM2, b: MM, hw: MM, r: MM, tf: MM, tw: MM, eta: DIMENSIONLESS
)

Bases: Formula

Class representing formula 6.18suba for the calculation of shear area for a rolled I and H section.

[\(A_v\)] Calculation of the shear area for a rolled I and H section with load parallel to web [\(mm^2\)].

EN 1993-1-1:2005 art.6.2.6(3) - Formula (6.18suba)

Parameters:

  • a (MM2) –

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

  • b (MM) –

    [\(b\)] Overall breadth [\(mm\)].

  • hw (MM) –

    [\(h_w\)] Depth of the web [\(mm\)].

  • r (MM) –

    [\(r\)] Root radius [\(mm\)].

  • tf (MM) –

    [\(t_f\)] Flange thickness [\(mm\)].

  • tw (MM) –

    [\(t_w\)] Web thickness [\(mm\)]. If the web thickness is not constant, tw should be taken as the minimum thickness.

  • eta (DIMENSIONLESS) –

    [\(\eta\)] Dimensionless conversionfactor, see EN 1993-1-5 5.1. Note, \(eta\) may be conservatively taken equal to 1.0.

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_18_sub_av.py
18
19
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
46
47
48
49
50
51
52
53
54
55
56
def __init__(
    self,
    a: MM2,
    b: MM,
    hw: MM,
    r: MM,
    tf: MM,
    tw: MM,
    eta: DIMENSIONLESS,
) -> None:
    r"""[$A_v$] Calculation of the shear area for a rolled I and H section with load parallel to web [$mm^2$].

    EN 1993-1-1:2005 art.6.2.6(3) - Formula (6.18suba)

    Parameters
    ----------
    a : MM2
        [$A$] Cross-sectional area [$mm^2$].
    b : MM
        [$b$] Overall breadth [$mm$].
    hw : MM
        [$h_w$] Depth of the web [$mm$].
    r : MM
        [$r$] Root radius [$mm$].
    tf : MM
        [$t_f$] Flange thickness [$mm$].
    tw : MM
        [$t_w$] Web thickness [$mm$]. If the web thickness is not constant, tw should be taken as the minimum thickness.
    eta : DIMENSIONLESS, optional
        [$\eta$] Dimensionless conversionfactor, see EN 1993-1-5 5.1. Note, $eta$ may be conservatively taken equal to 1.0.
    """
    super().__init__()
    self.a = a
    self.b = b
    self.hw = hw
    self.r = r
    self.tf = tf
    self.tw = tw
    self.eta = eta

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_18_sub_av.Form6Dot18SubARolledIandHSection.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 6.18suba.

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_18_sub_av.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
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 6.18suba."""
    _equation: str = r"max(A - 2 \cdot b \cdot t_f + (t_w + 2 \cdot r) \cdot t_f; \eta \cdot h_w \cdot t_w)"
    _numeric_equation: str = latex_replace_symbols(
        _equation,
        {
            r"A": f"{self.a:.{n}f}",
            r"b": f"{self.b:.{n}f}",
            r"h_w": f"{self.hw:.{n}f}",
            r"r": f"{self.r:.{n}f}",
            r"t_f": f"{self.tf:.{n}f}",
            r"t_w": f"{self.tw:.{n}f}",
            r"\eta": f"{self.eta:.{n}f}",
        },
        False,
    )
    return LatexFormula(
        return_symbol=r"A_v",
        result=f"{self:.{n}f}",
        equation=_equation,
        numeric_equation=_numeric_equation,
        comparison_operator_label="=",
        unit="mm^2",
    )

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_18_sub_av.Form6Dot18SubBRolledChannelSection

Form6Dot18SubBRolledChannelSection(a: MM2, b: MM, tf: MM, tw: MM, r: MM)

Bases: Formula

Class representing formula 6.18subb for the calculation of shear area for a rolled channel section.

[\(A_v\)] Calculation of the shear area for a rolled channel section with load parallel to web [\(mm^2\)].

EN 1993-1-1:2005 art.6.2.6(3) - Formula (6.18subb)

Parameters:

  • a (MM2) –

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

  • b (MM) –

    [\(b\)] Overall breadth [\(mm\)].

  • tf (MM) –

    [\(t_f\)] Flange thickness [\(mm\)].

  • tw (MM) –

    [\(t_w\)] Web thickness [\(mm\)]. If the web thickness is not constant, tw should be taken as the minimum thickness.

  • r (MM) –

    [\(r\)] Root radius [\(mm\)].

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_18_sub_av.py
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
def __init__(
    self,
    a: MM2,
    b: MM,
    tf: MM,
    tw: MM,
    r: MM,
) -> None:
    r"""[$A_v$] Calculation of the shear area for a rolled channel section with load parallel to web [$mm^2$].

    EN 1993-1-1:2005 art.6.2.6(3) - Formula (6.18subb)

    Parameters
    ----------
    a : MM2
        [$A$] Cross-sectional area [$mm^2$].
    b : MM
        [$b$] Overall breadth [$mm$].
    tf : MM
        [$t_f$] Flange thickness [$mm$].
    tw : MM
        [$t_w$] Web thickness [$mm$]. If the web thickness is not constant, tw should be taken as the minimum thickness.
    r : MM
        [$r$] Root radius [$mm$].
    """
    super().__init__()
    self.a = a
    self.b = b
    self.tf = tf
    self.tw = tw
    self.r = r

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_18_sub_av.Form6Dot18SubBRolledChannelSection.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 6.18subb.

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_18_sub_av.py
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 6.18subb."""
    _equation: str = r"A - 2 \cdot b \cdot t_f + (t_w + r) \cdot t_f"
    _numeric_equation: str = latex_replace_symbols(
        _equation,
        {
            r"A": f"{self.a:.{n}f}",
            r"b": f"{self.b:.{n}f}",
            r"t_f": f"{self.tf:.{n}f}",
            r"t_w": f"{self.tw:.{n}f}",
            r"r": f"{self.r:.{n}f}",
        },
        False,
    )
    return LatexFormula(
        return_symbol=r"A_v",
        result=f"{self:.{n}f}",
        equation=_equation,
        numeric_equation=_numeric_equation,
        comparison_operator_label="=",
        unit="mm^2",
    )

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_18_sub_av.Form6Dot18SubCTSectionRolled

Form6Dot18SubCTSectionRolled(a: MM2, b: MM, tf: MM, tw: MM, r: MM)

Bases: Formula

Class representing formula 6.18subc for the calculation of shear area for a rolled T-section with load parallel to web.

[\(A_v\)] Calculation of the shear area for a T-section with load parallel to web [\(mm^2\)].

EN 1993-1-1:2005 art.6.2.6(3) - Formula (6.18subc)

Parameters:

  • a (MM2) –

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

  • b (MM) –

    [\(b\)] Overall breadth [\(mm\)].

  • tf (MM) –

    [\(t_f\)] Flange thickness [\(mm\)].

  • tw (MM) –

    [\(t_w\)] Web thickness [\(mm\)]. If the web thickness is not constant, tw should be taken as the minimum thickness.

  • r (MM) –

    [\(r\)] Root radius [\(mm\)].

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_18_sub_av.py
183
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 __init__(
    self,
    a: MM2,
    b: MM,
    tf: MM,
    tw: MM,
    r: MM,
) -> None:
    r"""[$A_v$] Calculation of the shear area for a T-section with load parallel to web [$mm^2$].

    EN 1993-1-1:2005 art.6.2.6(3) - Formula (6.18subc)

    Parameters
    ----------
    a : MM2
        [$A$] Cross-sectional area [$mm^2$].
    b : MM
        [$b$] Overall breadth [$mm$].
    tf : MM
        [$t_f$] Flange thickness [$mm$].
    tw : MM
        [$t_w$] Web thickness [$mm$]. If the web thickness is not constant, tw should be taken as the minimum thickness.
    r : MM
        [$r$] Root radius [$mm$].
    """
    super().__init__()
    self.a = a
    self.b = b
    self.tf = tf
    self.tw = tw
    self.r = r

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_18_sub_av.Form6Dot18SubCTSectionRolled.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 6.18subc.

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_18_sub_av.py
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 6.18subc."""
    _equation: str = r"A - b \cdot t_f + (t_w + 2 \cdot r) \cdot \frac{t_f}{2}"
    _numeric_equation: str = latex_replace_symbols(
        _equation,
        {
            r"A": f"{self.a:.{n}f}",
            r"b": f"{self.b:.{n}f}",
            r"t_f": f"{self.tf:.{n}f}",
            r"t_w": f"{self.tw:.{n}f}",
            r" r": f" {self.r:.{n}f}",
        },
        False,
    )
    return LatexFormula(
        return_symbol=r"A_v",
        result=f"{self:.{n}f}",
        equation=_equation,
        numeric_equation=_numeric_equation,
        comparison_operator_label="=",
        unit="mm^2",
    )

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_18_sub_av.Form6Dot18SubCTSectionWelded

Form6Dot18SubCTSectionWelded(tf: MM, tw: MM, h: MM)

Bases: Formula

Class representing formula 6.18subc for the calculation of shear area for a welded T-section with load parallel to web.

[\(A_v\)] Calculation of the shear area for a T-section with load parallel to web [\(mm^2\)].

EN 1993-1-1:2005 art.6.2.6(3) - Formula (6.18subc)

Parameters:

  • tf (MM) –

    [\(t_f\)] Flange thickness [\(mm\)].

  • tw (MM) –

    [\(t_w\)] Web thickness [\(mm\)]. If the web thickness is not constant, tw should be taken as the minimum thickness.

  • h (MM) –

    [\(h\)] Overall depth [\(mm\)].

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_18_sub_av.py
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
def __init__(
    self,
    tf: MM,
    tw: MM,
    h: MM,
) -> None:
    r"""[$A_v$] Calculation of the shear area for a T-section with load parallel to web [$mm^2$].

    EN 1993-1-1:2005 art.6.2.6(3) - Formula (6.18subc)

    Parameters
    ----------
    tf : MM
        [$t_f$] Flange thickness [$mm$].
    tw : MM
        [$t_w$] Web thickness [$mm$]. If the web thickness is not constant, tw should be taken as the minimum thickness.
    h : MM
        [$h$] Overall depth [$mm$].
    """
    super().__init__()
    self.tf = tf
    self.tw = tw
    self.h = h

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_18_sub_av.Form6Dot18SubCTSectionWelded.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 6.18subc.

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_18_sub_av.py
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 6.18subc."""
    _equation: str = r"t_w \cdot (h \cdot t_f / 2)"
    _numeric_equation: str = latex_replace_symbols(
        _equation,
        {
            r"t_f": f"{self.tf:.{n}f}",
            r"t_w": f"{self.tw:.{n}f}",
            r"h": f"{self.h:.{n}f}",
        },
        False,
    )
    return LatexFormula(
        return_symbol=r"A_v",
        result=f"{self:.{n}f}",
        equation=_equation,
        numeric_equation=_numeric_equation,
        comparison_operator_label="=",
        unit="mm^2",
    )

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_18_sub_av.Form6Dot18SubDWeldedIHandBoxSection

Form6Dot18SubDWeldedIHandBoxSection(
    hw_list: list[MM], tw_list: list[MM], eta: DIMENSIONLESS
)

Bases: Formula

Class representing formula 6.18subd for the calculation of shear area for welded I, H, and box sections with load parallel to web.

[\(A_v\)] Calculation of the shear area for welded I, H, and box sections with load parallel to web [\(mm^2\)].

EN 1993-1-1:2005 art.6.2.6(3) - Formula (6.18subd)

Parameters:

  • hw_list (list[MM]) –

    [\(h_w\)] List of depths of the web [\(mm\)].

  • tw_list (list[MM]) –

    [\(t_w\)] List of web thicknesses [\(mm\)]. If the web thickness is not constant, tw should be taken as the minimum thickness.

  • eta (DIMENSIONLESS) –

    [\(\eta\)] See EN 1993-1-5. Note, \(eta\) may be conservatively taken equal to 1.0.

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_18_sub_av.py
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
def __init__(
    self,
    hw_list: list[MM],
    tw_list: list[MM],
    eta: DIMENSIONLESS,
) -> None:
    r"""[$A_v$] Calculation of the shear area for welded I, H, and box sections with load parallel to web [$mm^2$].

    EN 1993-1-1:2005 art.6.2.6(3) - Formula (6.18subd)

    Parameters
    ----------
    hw_list : list[MM]
        [$h_w$] List of depths of the web [$mm$].
    tw_list : list[MM]
        [$t_w$] List of web thicknesses [$mm$]. If the web thickness is not constant, tw should be taken as the minimum thickness.
    eta : DIMENSIONLESS
        [$\eta$] See EN 1993-1-5. Note, $eta$ may be conservatively taken equal to 1.0.
    """
    super().__init__()
    self.hw_list: list[MM] = hw_list
    self.tw_list: list[MM] = tw_list
    self.eta = eta

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_18_sub_av.Form6Dot18SubDWeldedIHandBoxSection.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 6.18subd.

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_18_sub_av.py
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 6.18subd."""
    _equation: str = r"\eta \cdot \sum (h_{w} \cdot t_{w})"
    _numeric_equation: str = rf"{self.eta:.{n}f} \cdot (" + rf"{self.hw_list[0]:.{n}f} \cdot {self.tw_list[0]:.{n}f}"
    for i in range(1, len(self.hw_list)):
        _numeric_equation += rf" + {self.hw_list[i]:.{n}f} \cdot {self.tw_list[i]:.{n}f}"
    _numeric_equation += ")"
    return LatexFormula(
        return_symbol=r"A_v",
        result=f"{self:.{n}f}",
        equation=_equation,
        numeric_equation=_numeric_equation,
        comparison_operator_label="=",
        unit="mm^2",
    )

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_18_sub_av.Form6Dot18SubEWeldedIHandBoxSection

Form6Dot18SubEWeldedIHandBoxSection(
    a: MM2, hw_list: list[MM], tw_list: list[MM]
)

Bases: Formula

Class representing formula 6.18sube for the calculation of shear area for welded I, H, channel, and box sections with load parallel to flanges.

[\(A_v\)] Calculation of the shear area for welded I, H, channel, and box sections with load parallel to flanges [\(mm^2\)].

EN 1993-1-1:2005 art.6.2.6(3) - Formula (6.18sube)

Parameters:

  • a (MM2) –

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

  • hw_list (list[MM]) –

    [\(h_w\)] List of depths of the web [\(mm\)].

  • tw_list (list[MM]) –

    [\(t_w\)] List of web thicknesses [\(mm\)]. If the web thickness is not constant, tw should be taken as the minimum thickness.

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_18_sub_av.py
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
def __init__(
    self,
    a: MM2,
    hw_list: list[MM],
    tw_list: list[MM],
) -> None:
    r"""[$A_v$] Calculation of the shear area for welded I, H, channel, and box sections with load parallel to flanges [$mm^2$].

    EN 1993-1-1:2005 art.6.2.6(3) - Formula (6.18sube)

    Parameters
    ----------
    a : MM2
        [$A$] Cross-sectional area [$mm^2$].
    hw_list : list[MM]
        [$h_w$] List of depths of the web [$mm$].
    tw_list : list[MM]
        [$t_w$] List of web thicknesses [$mm$]. If the web thickness is not constant, tw should be taken as the minimum thickness.
    """
    super().__init__()
    self.a = a
    self.hw_list: list[MM] = hw_list
    self.tw_list: list[MM] = tw_list

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_18_sub_av.Form6Dot18SubEWeldedIHandBoxSection.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 6.18sube.

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_18_sub_av.py
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 6.18sube."""
    _equation: str = r"A - \sum (h_{w} \cdot t_{w})"
    _numeric_equation: str = rf"{self.a:.{n}f} - (" + rf"{self.hw_list[0]:.{n}f} \cdot {self.tw_list[0]:.{n}f}"
    for i in range(1, len(self.hw_list)):
        _numeric_equation += rf" + {self.hw_list[i]:.{n}f} \cdot {self.tw_list[i]:.{n}f}"
    _numeric_equation += ")"
    return LatexFormula(
        return_symbol=r"A_v",
        result=f"{self:.{n}f}",
        equation=_equation,
        numeric_equation=_numeric_equation,
        comparison_operator_label="=",
        unit="mm^2",
    )

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_18_sub_av.Form6Dot18SubF1RolledRectangularHollowSectionDepth

Form6Dot18SubF1RolledRectangularHollowSectionDepth(a: MM2, b: MM, h: MM)

Bases: Formula

Class representing formula 6.18subf1 for the calculation of shear area for rolled rectangular hollow sections of uniform thickness with load parallel to depth.

[\(A_v\)] Calculation of the shear area for rolled rectangular hollow sections of uniform thickness with load parallel to depth [\(mm^2\)].

EN 1993-1-1:2005 art.6.2.6(3) - Formula (6.18subf1)

Parameters:

  • a (MM2) –

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

  • b (MM) –

    [\(b\)] Overall breadth [\(mm\)].

  • h (MM) –

    [\(h\)] Overall depth [\(mm\)].

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_18_sub_av.py
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
def __init__(
    self,
    a: MM2,
    b: MM,
    h: MM,
) -> None:
    r"""[$A_v$] Calculation of the shear area for rolled rectangular hollow sections of uniform thickness with load parallel to depth [$mm^2$].

    EN 1993-1-1:2005 art.6.2.6(3) - Formula (6.18subf1)

    Parameters
    ----------
    a : MM2
        [$A$] Cross-sectional area [$mm^2$].
    b : MM
        [$b$] Overall breadth [$mm$].
    h : MM
        [$h$] Overall depth [$mm$].
    """
    super().__init__()
    self.a = a
    self.b = b
    self.h = h

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_18_sub_av.Form6Dot18SubF1RolledRectangularHollowSectionDepth.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 6.18subf1.

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_18_sub_av.py
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 6.18subf1."""
    _equation: str = r"\frac{A \cdot h}{b + h}"
    _numeric_equation: str = latex_replace_symbols(
        _equation,
        {
            r"A": f"{self.a:.{n}f}",
            r"b": f"{self.b:.{n}f}",
            r"h": f"{self.h:.{n}f}",
        },
        False,
    )
    return LatexFormula(
        return_symbol=r"A_v",
        result=f"{self:.{n}f}",
        equation=_equation,
        numeric_equation=_numeric_equation,
        comparison_operator_label="=",
        unit="mm^2",
    )

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_18_sub_av.Form6Dot18SubF2RolledRectangularHollowSectionWidth

Form6Dot18SubF2RolledRectangularHollowSectionWidth(a: MM2, b: MM, h: MM)

Bases: Formula

Class representing formula 6.18subf2 for the calculation of shear area for rolled rectangular hollow sections of uniform thickness with load parallel to width.

[\(A_v\)] Calculation of the shear area for rolled rectangular hollow sections of uniform thickness with load parallel to width [\(mm^2\)].

EN 1993-1-1:2005 art.6.2.6(3) - Formula (6.18subf2)

Parameters:

  • a (MM2) –

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

  • b (MM) –

    [\(b\)] Overall breadth [\(mm\)].

  • h (MM) –

    [\(h\)] Overall depth [\(mm\)].

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_18_sub_av.py
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
def __init__(
    self,
    a: MM2,
    b: MM,
    h: MM,
) -> None:
    r"""[$A_v$] Calculation of the shear area for rolled rectangular hollow sections of uniform thickness with load parallel to width [$mm^2$].

    EN 1993-1-1:2005 art.6.2.6(3) - Formula (6.18subf2)

    Parameters
    ----------
    a : MM2
        [$A$] Cross-sectional area [$mm^2$].
    b : MM
        [$b$] Overall breadth [$mm$].
    h : MM
        [$h$] Overall depth [$mm$].
    """
    super().__init__()
    self.a = a
    self.b = b
    self.h = h

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_18_sub_av.Form6Dot18SubF2RolledRectangularHollowSectionWidth.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 6.18subf2.

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_18_sub_av.py
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 6.18subf2."""
    _equation: str = r"\frac{A \cdot b}{b + h}"
    _numeric_equation: str = latex_replace_symbols(
        _equation,
        {
            r"A": f"{self.a:.{n}f}",
            r"b": f"{self.b:.{n}f}",
            r"h": f"{self.h:.{n}f}",
        },
        False,
    )
    return LatexFormula(
        return_symbol=r"A_v",
        result=f"{self:.{n}f}",
        equation=_equation,
        numeric_equation=_numeric_equation,
        comparison_operator_label="=",
        unit="mm^2",
    )

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_18_sub_av.Form6Dot18SubGCircularHollowSection

Form6Dot18SubGCircularHollowSection(a: MM2)

Bases: Formula

Class representing formula 6.18subg for the calculation of shear area for circular hollow sections and tubes of uniform thickness.

[\(A_v\)] Calculation of the shear area for circular hollow sections and tubes of uniform thickness [\(mm^2\)].

EN 1993-1-1:2005 art.6.2.6(3) - Formula (6.18subg)

Parameters:

  • a (MM2) –

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

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_18_sub_av.py
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
def __init__(
    self,
    a: MM2,
) -> None:
    r"""[$A_v$] Calculation of the shear area for circular hollow sections and tubes of uniform thickness [$mm^2$].

    EN 1993-1-1:2005 art.6.2.6(3) - Formula (6.18subg)

    Parameters
    ----------
    a : MM2
        [$A$] Cross-sectional area [$mm^2$].
    """
    super().__init__()
    self.a = a

codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_18_sub_av.Form6Dot18SubGCircularHollowSection.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 6.18subg.

Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_18_sub_av.py
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 6.18subg."""
    _equation: str = r"\frac{2 \cdot A}{\pi}"
    _numeric_equation: str = latex_replace_symbols(
        _equation,
        {
            r"A": f"{self.a:.{n}f}",
        },
        False,
    )
    return LatexFormula(
        return_symbol=r"A_v",
        result=f"{self:.{n}f}",
        equation=_equation,
        numeric_equation=_numeric_equation,
        comparison_operator_label="=",
        unit="mm^2",
    )