formula_8_27
codes.eurocode.fpr_en_1992_1_1_2023.chapter_8_ultimate_limit_states.formula_8_27
Formula 8.27 from FprEN 1992-1-1:2023: Chapter 8: Ultimate limit states (ULS).
Classes:
-
Form8Dot27DesignShearStressResistance–Class representing formula 8.27 for the calculation of the design value of the shear stress resistance
codes.eurocode.fpr_en_1992_1_1_2023.chapter_8_ultimate_limit_states.formula_8_27.Form8Dot27DesignShearStressResistance
Form8Dot27DesignShearStressResistance(
gamma_v: DIMENSIONLESS,
rho_l: DIMENSIONLESS,
f_ck: MPA,
d_dg: MM,
d: MM,
tau_rdc_min: MPA,
)
Bases: Formula
Class representing formula 8.27 for the calculation of the design value of the shear stress resistance of members without shear reinforcement.
[\(\tau_{Rd,c}\)] Design value of the shear stress resistance of members without shear reinforcement [\(MPa\)].
FprEN 1992-1-1:2023 (E) art 8.2.2 (2) - Formula (8.27)
The standard writes this as an expression bounded from below by [\(\tau_{Rdc,min}\)], which is implemented as the maximum of the two.
Parameters:
-
gamma_v(DIMENSIONLESS) –[\(\gamma_V\)] Partial factor for shear design according to Table 4.3 (NDP) or Tables A.1 (NDP) and A.2 (NDP) [\(-\)].
-
rho_l(DIMENSIONLESS) –[\(\rho_l\)] Longitudinal tensile reinforcement ratio according to Formula (8.28), see Form8Dot28LongitudinalReinforcementRatio [\(-\)].
-
f_ck(MPA) –[\(f_{ck}\)] Characteristic compressive strength of concrete [\(MPa\)].
-
d_dg(MM) –[\(d_{dg}\)] Size parameter describing the failure zone roughness, which depends on the concrete type and its aggregate properties. The standard gives it as [\(16 + D_{lower} \leq 40\)] for concrete with [\(f_{ck} \leq 60\)] MPa, and as [\(16 + D_{lower} \cdot \left(60/f_{ck}\right)^2 \leq 40\)] for concrete with [\(f_{ck} > 60\)] MPa, both in millimetres. [\(D_{lower}\)] is the smallest value of the upper sieve size [\(D\)] in an aggregate for the coarsest fraction of aggregates in the concrete permitted by the specification of concrete according to EN 206; where [\(D_{max}\)] is known it may replace [\(D_{lower}\)], see the NOTE 2 to 8.2.1(4) [\(mm\)].
-
d(MM) –[\(d\)] Effective depth [\(d_{nom}\)]. The value [\(d\)] may be refined according to 8.2.2(3) and 8.2.2(4) for non-slender members and members with axial force, by replacing it with the mechanical shear span [\(a_v\)] or by multiplying it with [\(k_{vp}\)]. That refinement is the responsibility of the caller, which passes the already adjusted value [\(mm\)].
-
tau_rdc_min(MPA) –[\(\tau_{Rdc,min}\)] Minimum shear stress resistance according to Formula (8.20), see Form8Dot20MinimumShearStressResistance [\(MPa\)].
Source code in blueprints/codes/eurocode/fpr_en_1992_1_1_2023/chapter_8_ultimate_limit_states/formula_8_27.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 62 63 64 65 66 67 | |
codes.eurocode.fpr_en_1992_1_1_2023.chapter_8_ultimate_limit_states.formula_8_27.Form8Dot27DesignShearStressResistance.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 8.27.
Source code in blueprints/codes/eurocode/fpr_en_1992_1_1_2023/chapter_8_ultimate_limit_states/formula_8_27.py
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 122 | |