formula_6_47
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_47
Formula 6.47 from EN 1992-1-1:2004: Chapter 6 - Ultimate Limit State.
Classes:
-
Form6Dot47PunchingShearResistance–Class representing formula 6.47 for the calculation of punching shear resistance, \(v_{Rd,c}\) of slabs and column bases
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_47.Form6Dot47PunchingShearResistance
Form6Dot47PunchingShearResistance(
c_rd_c: DIMENSIONLESS,
k: DIMENSIONLESS,
rho_l: DIMENSIONLESS,
f_ck: MPA,
k_1: DIMENSIONLESS,
sigma_cp: MPA,
v_min: MPA,
)
Bases: Formula
Class representing formula 6.47 for the calculation of punching shear resistance, \(v_{Rd,c}\) of slabs and column bases without shear reinforcement.
\(v_{Rd,c}\) Calculation of punching shear resistance of slabs and column bases without shear reinforcement.
EN 1992-1-1:2004 art.6.4.4(1) - Formula (6.47).
The values of \(C_{Rd,c}\), \(v_{min}\), and \(k_1\) 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_1\) is \(0.1\).
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\)].
-
k_1(DIMENSIONLESS) –\(k_1\) Coefficient for concrete strength, recommended value 0.1 [-].
-
sigma_cp(MPA) –\(\sigma_{cp}\) Stress in the critical section as average of the two perpendicular directions, see equation SubForm6Dot47FactorSigmaCp [\(MPa\)].
-
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_47.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 61 | |
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_47.Form6Dot47PunchingShearResistance.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 6.47.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_47.py
80 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 | |