formula_6_50
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_50
Formula 6.50 from EN 1992-1-1:2004: Chapter 6 - Ultimate Limit State.
Classes:
-
Form6Dot50PunchingStressResistance–Class representing formula 6.50 for the calculation of punching stress resistance [\(v_{Rd}\)] of slabs and
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_50.Form6Dot50PunchingStressResistance
Form6Dot50PunchingStressResistance(
c_rd_c: DIMENSIONLESS,
k: DIMENSIONLESS,
rho_l: DIMENSIONLESS,
f_ck: MPA,
d: MM,
a: MM,
v_min: MPA,
)
Bases: Formula
Class representing formula 6.50 for the calculation of punching stress resistance [\(v_{Rd}\)] of slabs and column bases without shear reinforcement.
[\(v_{Rd}\)] Calculation of punching stress resistance of slabs and column bases without shear reinforcement.
EN 1992-1-1:2004 art.6.4.4(2) - Formula (6.50)
The values of \(C_{Rd,c}\), \(v_{min}\), and \(k\) for use in a country may be found in its national annex. The recommended value for \(C_{Rd,c}\) is \(0.18 / \gamma_c\), for \(v_{min}\) is given by Expression (6.3N), and that for \(k\) is \(1.0\).
Parameters:
-
c_rd_c(DIMENSIONLESS) –\(C_{Rd,c}\) Coefficient for punching shear resistance, recommended value \(0.18 / \gamma_c\) [-].
-
k(DIMENSIONLESS) –\(k\) Size effect factor, see equation SubForm6Dot47FactorK [-].
-
rho_l(DIMENSIONLESS) –\(\rho_l\) Longitudinal reinforcement ratio, see equation SubForm6Dot47FactorRhoL [-].
-
f_ck(MPA) –\(f_{ck}\) Characteristic compressive strength of concrete [\(MPa\)].
-
d(MM) –\(d\) Effective depth [\(mm\)].
-
a(MM) –\(a\) Distance from the periphery of the column to the control perimeter considered [\(mm\)].
-
v_min(MPA) –\(v_{min}\) Minimum shear stress capacity concrete, recommended value with Expression (6.3N) [\(MPa\)].
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_50.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 53 54 55 56 57 58 59 60 | |
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_50.Form6Dot50PunchingStressResistance.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 6.50.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_50.py
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | |