formula_6_52
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_52
Formula 6.52 from EN 1992-1-1:2004: Chapter 6 - Ultimate Limit State.
Classes:
-
Form6Dot52PunchingShearResistance–Class representing formula 6.52 for the calculation of punching shear resistance.
-
Form6Dot52Sub1EffectiveYieldStrength–Class representing formula 6.52sub1 for the calculation of [\(f_{ywd,ef}\)].
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_52.Form6Dot52PunchingShearResistance
Form6Dot52PunchingShearResistance(
v_rd_c: MPA, d: MM, s_r: MM, a_sw: MM2, f_ywd_ef: MPA, u_1: MM, alpha: DEG
)
Bases: Formula
Class representing formula 6.52 for the calculation of punching shear resistance.
EN 1992-1-1:2004 art.6.4.5(1) - Formula (6.52)
Parameters:
-
v_rd_c(MPA) –[\(v_{Rd,c}\)] Design shear strength of concrete without shear reinforcement [\(MPa\)].
-
d(MM) –[\(d\)] Mean effective depth of the slab [\(mm\)].
-
s_r(MM) –[\(s_r\)] Radial spacing of perimeters of shear reinforcement [\(mm\)].
-
a_sw(MM2) –[\(A_{sw}\)] Area of one perimeter of shear reinforcement around the column [\(mm^2\)].
-
f_ywd_ef(MPA) –[\(f_{ywd,ef}\)] Effective design strength of the punching shear reinforcement [\(MPa\)].
-
u_1(MM) –[\(u_{y1}\)] Perimeter of the critical section [\(mm\)].
-
alpha(DEG) –[\(\alpha\)] Angle between the shear reinforcement and the plane of the slab [\(deg\)].
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_52.py
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | |
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_52.Form6Dot52PunchingShearResistance.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 6.52.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_52.py
72 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 | |
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_52.Form6Dot52Sub1EffectiveYieldStrength
Form6Dot52Sub1EffectiveYieldStrength(d: MM, f_ywd: MPA)
Bases: Formula
Class representing formula 6.52sub1 for the calculation of [\(f_{ywd,ef}\)].
[f_{ywd,ef}] Calculation of [\(f_{ywd,ef}\)].
EN 1992-1-1:2004 art.6.4.5(1) - Formula (6.52sub1)
Parameters:
-
d(MM) –[\(d\)] Mean effective depth of the slab [\(mm\)].
-
f_ywd(MPA) –[\(f_{ywd}\)] Design yield strength of the reinforcement [\(MPa\)].
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_52.py
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | |
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_52.Form6Dot52Sub1EffectiveYieldStrength.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 6.52sub1.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_52.py
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | |