Skip to content

formula_8_18

codes.eurocode.pr_en_1992_1_2023.chapter_8_ultimate_limit_states.formula_8_18

Formula 8.18 from prEN-1992-1-1:2023: Chapter 8: Ultimate limit states (ULS).

Classes:

codes.eurocode.pr_en_1992_1_2023.chapter_8_ultimate_limit_states.formula_8_18.Form8Dot18AverageShearStress

Form8Dot18AverageShearStress(v_ed: N, b_w: MM, z: MM)

Bases: Formula

Class representing formula 8.18 for the calculation of the average shear stress over the cross-section in regions of members without geometric discontinuities.

[\(\tau_{Ed}\)] Average shear stress over the cross-section area in regions of members without geometric discontinuities [\(MPa\)].

prEN 1992-1-1:2023 art 8.2.1 (3) - Formula (8.18)

Parameters:

  • v_ed (N) –

    [\(V_{Ed}\)] Design shear force at the control section in linear members

  • b_w (MM) –

    [\(b_w\)] Width of the cross-section of linear members.

  • z (MM) –

    [\(z\)] Lever arm for the shear stress calculation defined as z = 0.9d

Source code in blueprints/codes/eurocode/pr_en_1992_1_2023/chapter_8_ultimate_limit_states/formula_8_18.py
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
def __init__(self, v_ed: N, b_w: MM, z: MM) -> None:
    r"""[$\tau_{Ed}$] Average shear stress over the cross-section area in regions of members without geometric discontinuities [$MPa$].

    prEN 1992-1-1:2023 art 8.2.1 (3) - Formula (8.18)

    Parameters
    ----------
    v_ed : N
        [$V_{Ed}$] Design shear force at the control section in linear members
    b_w : MM
        [$b_w$] Width of the cross-section of linear members.
    z : MM
        [$z$] Lever arm for the shear stress calculation defined as z = 0.9d
    """
    super().__init__()
    self.v_ed = v_ed
    self.b_w = b_w
    self.z = z

codes.eurocode.pr_en_1992_1_2023.chapter_8_ultimate_limit_states.formula_8_18.Form8Dot18AverageShearStress.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 8.18.

Source code in blueprints/codes/eurocode/pr_en_1992_1_2023/chapter_8_ultimate_limit_states/formula_8_18.py
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 8.18."""
    _equation: str = r"\frac{V_{Ed}}{b_w \cdot z}"
    _numeric_equation: str = latex_replace_symbols(
        template=_equation,
        replacements={r"V_{Ed}": f"{self.v_ed:.{n}f}", r"b_w": f"{self.b_w:.{n}f}", r"z": f"{self.z:.{n}f}"},
        unique_symbol_check=False,
    )
    return LatexFormula(
        return_symbol=r"\tau_{Ed}",
        result=f"{self:.{n}f}",
        equation=_equation,
        numeric_equation=_numeric_equation,
        comparison_operator_label="=",
        unit="MPa",
    )