Skip to content

formula_6_12

codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_12

Formula 6.12 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_12.Form6Dot12CheckMaxEffectiveCrossSectionalAreaShearReinf

Form6Dot12CheckMaxEffectiveCrossSectionalAreaShearReinf(
    a_sw_max: MM2,
    f_ywd: MPA,
    b_w: MM,
    s: MM,
    alpha_cw: DIMENSIONLESS,
    nu_1: DIMENSIONLESS,
    f_cd: MPA,
)

Bases: Formula

Class representing formula 6.12 for checking the maximum effective cross-sectional area of the shear reinforcement.

Check the maximum effective cross-sectional area of the shear reinforcement.

EN 1992-1-1:2004 art.6.2.3(3) - Formula (6.12)

Parameters:

  • a_sw_max (MM2) –

    [\(A_{sw,max}\)] Maximum effective cross-sectional area of the shear reinforcement [\(mm^2\)].

  • f_ywd (MPA) –

    [\(f_{ywd}\)] Design yield strength of the shear reinforcement [\(MPa\)].

  • b_w (MM) –

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

  • s (MM) –

    [\(s\)] Spacing of the shear reinforcement [\(mm\)].

  • alpha_cw (DIMENSIONLESS) –

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

  • nu_1 (DIMENSIONLESS) –

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

  • f_cd (MPA) –

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

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_12.py
16
17
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
def __init__(
    self,
    a_sw_max: MM2,
    f_ywd: MPA,
    b_w: MM,
    s: MM,
    alpha_cw: DIMENSIONLESS,
    nu_1: DIMENSIONLESS,
    f_cd: MPA,
) -> None:
    r"""Check the maximum effective cross-sectional area of the shear reinforcement.

    EN 1992-1-1:2004 art.6.2.3(3) - Formula (6.12)

    Parameters
    ----------
    a_sw_max : MM2
        [$A_{sw,max}$] Maximum effective cross-sectional area of the shear reinforcement [$mm^2$].
    f_ywd : MPA
        [$f_{ywd}$] Design yield strength of the shear reinforcement [$MPa$].
    b_w : MM
        [$b_{w}$] Width of the web [$mm$].
    s : MM
        [$s$] Spacing of the shear reinforcement [$mm$].
    alpha_cw : DIMENSIONLESS
        [$\alpha_{cw}$] Coefficient taking account of the state of stress in the compression chord [$-$].
    nu_1 : DIMENSIONLESS
        [$\nu_{1}$] Strength reduction factor for concrete [$-$].
    f_cd : MPA
        [$f_{cd}$] Design value of concrete compressive strength [$MPa$].
    """
    super().__init__()
    self.a_sw_max = a_sw_max
    self.f_ywd = f_ywd
    self.b_w = b_w
    self.s = s
    self.alpha_cw = alpha_cw
    self.nu_1 = nu_1
    self.f_cd = f_cd

codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_12.Form6Dot12CheckMaxEffectiveCrossSectionalAreaShearReinf.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 6.12.

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_12.py
75
76
77
78
79
80
81
82
83
84
85
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 6.12."""
    return LatexFormula(
        return_symbol=r"CHECK",
        result="OK" if self.__bool__() else "\\text{Not OK}",
        equation=r"\frac{A_{sw,max} \cdot f_{ywd}}{b_{w} \cdot s} \leq \frac{1}{2} \cdot \alpha_{cw} \cdot \nu_{1} \cdot f_{cd}",
        numeric_equation=rf"\frac{{{self.a_sw_max:.{n}f} \cdot {self.f_ywd:.{n}f}}}{{{self.b_w:.{n}f} \cdot {self.s:.{n}f}}}"
        rf" \leq \frac{{1}}{{2}} \cdot {self.alpha_cw:.{n}f} \cdot {self.nu_1:.{n}f} \cdot {self.f_cd:.{n}f}",
        comparison_operator_label="\\to",
        unit="",
    )