formula_9_11
codes.eurocode.en_1992_1_1_2004.chapter_9_detailling_and_specific_rules.formula_9_11
Formula 9.11 from EN 1992-1-1:2004: Chapter 9 - Detailing and specific rules.
Classes:
-
Form9Dot11MinimumShearReinforcement–Class representing the formula 9.11 for the calculation of the minimum shear reinforcement.
codes.eurocode.en_1992_1_1_2004.chapter_9_detailling_and_specific_rules.formula_9_11.Form9Dot11MinimumShearReinforcement
Form9Dot11MinimumShearReinforcement(
alpha: DEG, s_r: MM, s_t: MM, f_ck: MPA, f_yk: MPA
)
Bases: Formula
Class representing the formula 9.11 for the calculation of the minimum shear reinforcement.
[\(\(A_{sw,min}\)\)] Minimum shear reinforcement [\(\(mm^2\)\)].
The spirit of the equation is to calculate the shear reinforcement area. The formula is converted such that it actually does that, as opposed to the presentation in the Eurocode which only checks if the area is sufficient with a boolean result.
EN 1992-1-1:2004 art.9.4.3(2) - Formula (9.11)
Parameters:
-
alpha(DEG) –[\(\(\alpha\)\)] Angle between the shear reinforcement and the main steel [\(\(^\circ\)\)].
-
s_r(MM) –[\(\(s_r\)\)] Spacing of shear links in the radial direction [\(\(mm\)\)].
-
s_t(MM) –[\(\(s_t\)\)] Spacing of shear links in the tangential direction [\(\(mm\)\)].
-
f_ck(MPA) –[\(\(f_{ck}\)\)] Characteristic compressive strength of concrete [\(\(MPa\)\)].
-
f_yk(MPA) –[\(\(f_{yk}\)\)] Characteristic yield strength of reinforcement [\(\(MPa\)\)].
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_9_detailling_and_specific_rules/formula_9_11.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 | |
codes.eurocode.en_1992_1_1_2004.chapter_9_detailling_and_specific_rules.formula_9_11.Form9Dot11MinimumShearReinforcement.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 9.11.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_9_detailling_and_specific_rules/formula_9_11.py
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | |