Skip to content

formula_6_14

codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_14

Formula 6.14 from EN 1992-1-1:2004: Chapter 6 - Ultimate limit state.

Classes:

codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_14.Form6Dot14MaxShearResistanceInclinedReinforcement

Form6Dot14MaxShearResistanceInclinedReinforcement(
    alpha_cw: DIMENSIONLESS,
    b_w: MM,
    z: MM,
    nu_1: DIMENSIONLESS,
    f_cd: MPA,
    theta: DEG,
    alpha: DEG,
)

Bases: Formula

Class representing formula 6.14 for the calculation of the maximum shear resistance for members with inclined shear reinforcement, [\(V_{Rd,max}\)].

[\(V_{Rd,max}\)] Maximum shear resistance for members with inclined shear reinforcement [\(N\)].

EN 1992-1-1:2004 art.6.2.3(4) - Formula (6.14)

Parameters:

  • alpha_cw (DIMENSIONLESS) –

    [\(\alpha_{cw}\)] Coefficient taking account of the state of the stress in the compression chord [\(-\)].

  • b_w (MM) –

    [\(b_{w}\)] Width of the web [\(mm\)].

  • z (MM) –

    [\(z\)] Lever arm [\(mm\)].

  • nu_1 (DIMENSIONLESS) –

    [\(\nu_{1}\)] Strength reduction factor for concrete [\(-\)].

  • f_cd (MPA) –

    [\(f_{cd}\)] Design value of concrete compressive strength [\(MPa\)].

  • theta (DEG) –

    [\(\theta\)] Angle between the concrete compression strut and the beam axis perpendicular to the shear force [\(degrees\)].

  • alpha (DEG) –

    [\(\alpha\)] Angle between shear reinforcement and the beam axis perpendicular to the shear force [\(degrees\)].

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_14.py
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
57
58
def __init__(
    self,
    alpha_cw: DIMENSIONLESS,
    b_w: MM,
    z: MM,
    nu_1: DIMENSIONLESS,
    f_cd: MPA,
    theta: DEG,
    alpha: DEG,
) -> None:
    r"""[$V_{Rd,max}$] Maximum shear resistance for members with inclined shear reinforcement [$N$].

    EN 1992-1-1:2004 art.6.2.3(4) - Formula (6.14)

    Parameters
    ----------
    alpha_cw : DIMENSIONLESS
        [$\alpha_{cw}$] Coefficient taking account of the state of the stress in the compression chord [$-$].
    b_w : MM
        [$b_{w}$] Width of the web [$mm$].
    z : MM
        [$z$] Lever arm [$mm$].
    nu_1 : DIMENSIONLESS
        [$\nu_{1}$] Strength reduction factor for concrete [$-$].
    f_cd : MPA
        [$f_{cd}$] Design value of concrete compressive strength [$MPa$].
    theta : DEG
        [$\theta$] Angle between the concrete compression strut and the beam axis perpendicular to the
        shear force [$degrees$].
    alpha : DEG
        [$\alpha$] Angle between shear reinforcement and the beam axis perpendicular to the shear force [$degrees$].
    """
    super().__init__()
    self.alpha_cw = alpha_cw
    self.b_w = b_w
    self.z = z
    self.nu_1 = nu_1
    self.f_cd = f_cd
    self.theta = theta
    self.alpha = alpha

codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_14.Form6Dot14MaxShearResistanceInclinedReinforcement.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 6.14.

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_14.py
85
86
87
88
89
90
91
92
93
94
95
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 6.14."""
    return LatexFormula(
        return_symbol=r"V_{Rd,max}",
        result=f"{self:.{n}f}",
        equation=r"\alpha_{cw} \cdot b_{w} \cdot z \cdot \nu_{1} \cdot f_{cd} \cdot \frac{\cot(\theta) + \cot(\alpha)}{1 + \cot^2(\theta)}",
        numeric_equation=rf"{self.alpha_cw:.{n}f} \cdot {self.b_w:.{n}f} \cdot {self.z:.{n}f} \cdot {self.nu_1:.{n}f} \cdot {self.f_cd:.{n}f} \cdot "  # noqa: E501
        rf"\frac{{\cot({self.theta:.{n}f}) + \cot({self.alpha:.{n}f})}}{{1 + \cot^2({self.theta:.{n}f})}}",
        comparison_operator_label="=",
        unit="N",
    )