formula_6_2
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_2
Formula 6.2a from EN 1992-1-1:2004: Chapter 6 - Ultimate Limit State.
Classes:
-
Form6Dot2ShearResistance–Class representing formula 6.2a for the calculation of the design value for the shear resistance, [\(V_{Rd,c}\)].
-
Form6Dot2aSub1ThicknessFactor–Class representing formula 6.2a for k, the thickness factor, [\(k\)].
-
Form6Dot2aSub2RebarRatio–Class representing formula 6.2a for the tensile rebar ratio, [\(\rho_l\)].
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_2.Form6Dot2ShearResistance
Form6Dot2ShearResistance(
c_rd_c: DIMENSIONLESS,
k: DIMENSIONLESS,
rho_l: DIMENSIONLESS,
f_ck: MPA,
k_1: DIMENSIONLESS,
sigma_cp: MPA,
b_w: MM,
d: MM,
v_min: N,
)
Bases: Formula
Class representing formula 6.2a for the calculation of the design value for the shear resistance, [\(V_{Rd,c}\)].
[\(V_{Rd,c}\)] Design value for the shear resistance [\(kN\)].
EN 1992-1-1:2004 art.6.2.2(1) - Formula (6.2a)
Parameters:
-
c_rd_c(DIMENSIONLESS) –[\(C_{Rd,c}\)] Coefficient for shear strength [\(-\)].
-
k(DIMENSIONLESS) –[\(k\)] Size effect factor [\(-\)].
-
rho_l(DIMENSIONLESS) –[\(\rho_l\)] Longitudinal reinforcement ratio [\(-\)].
-
f_ck(MPA) –[\(f_{ck}\)] Characteristic compressive strength of concrete [\(MPa\)].
-
k_1(DIMENSIONLESS) –[\(k_1\)] Coefficient for concrete [\(-\)].
-
sigma_cp(MPA) –[\(\sigma_{cp}\)] Compressive stress in the concrete [\(MPa\)].
-
b_w(MM) –[\(b_w\)] Width of the web [\(mm\)].
-
d(MM) –[\(d\)] Effective depth [\(mm\)].
-
v_min(N) –[\(v_{min}\)] shear capacity without rebar [\(N\)].
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_2.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 55 56 57 58 59 60 61 62 | |
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_2.Form6Dot2ShearResistance.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 6.2.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_2.py
93 94 95 96 97 98 99 100 101 102 103 104 105 | |
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_2.Form6Dot2aSub1ThicknessFactor
Form6Dot2aSub1ThicknessFactor(d: MM)
Bases: Formula
Class representing formula 6.2a for k, the thickness factor, [\(k\)].
[\(k\)] factor to take thickness into account [\(kN\)].
EN 1992-1-1:2004 art.6.2.2(1) - Formula (6.2a)
Parameters:
-
d(MM) –[\(d\)] Effective depth [\(mm\)].
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_2.py
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | |
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_2.Form6Dot2aSub1ThicknessFactor.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 6.2a Sub 1.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_2.py
139 140 141 142 143 144 145 146 147 148 | |
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_2.Form6Dot2aSub2RebarRatio
Form6Dot2aSub2RebarRatio(a_sl: MM2, b_w: MM, d: MM)
Bases: Formula
Class representing formula 6.2a for the tensile rebar ratio, [\(\rho_l\)].
[\(\rho_l\)] Tensile rebar ratio [\(-\)].
EN 1992-1-1:2004 art.6.2.2(1) - Formula (6.2a)
Parameters:
-
a_sl(MM2) –[\(A_{sl}\)] Area of tensile reinforcement [\(mm^2\)].
-
b_w(MM) –[\(b_w\)] Width of the web [\(mm\)].
-
d(MM) –[\(d\)] Effective depth [\(mm\)].
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_2.py
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | |
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_2.Form6Dot2aSub2RebarRatio.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 6.2a Sub 2.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_2.py
193 194 195 196 197 198 199 200 201 202 | |