formula_8_55
codes.eurocode.fpr_en_1992_1_1_2023.chapter_8_ultimate_limit_states.formula_8_55
Formula 8.55 from FprEN 1992-1-1:2023: Chapter 8: Ultimate limit states (ULS).
Classes:
-
Form8Dot55EnhancedShearStressResistance–Class representing formula 8.55 for the calculation of the enhanced shear stress resistance where a
codes.eurocode.fpr_en_1992_1_1_2023.chapter_8_ultimate_limit_states.formula_8_55.Form8Dot55EnhancedShearStressResistance
Form8Dot55EnhancedShearStressResistance(
nu: DIMENSIONLESS,
f_cd: MPA,
theta: DEG,
beta_incl: DEG,
rho_w: DIMENSIONLESS,
f_ywd: MPA,
)
Bases: Formula
Class representing formula 8.55 for the calculation of the enhanced shear stress resistance where a concentrated load is applied close to a support.
[\(\tau_{Rd}\)] Enhanced shear stress resistance for concentrated loads applied close to a support [\(MPa\)].
FprEN 1992-1-1:2023 (E) art 8.2.3 (12) - Formula (8.55)
The standard offers this enhancement in cases where concentrated loads are applied at a distance [\(a_v = z \cdot \cot\beta_{incl}\)] less than [\(z \cdot \cot\theta\)] from a support. That is a condition of application, not a bound on the result, so it is not enforced here.
Parameters:
-
nu(DIMENSIONLESS) –[\(\nu\)] Strength reduction factor for concrete cracked in shear. A value of 0,5 may be adopted when using the angles of the compression field given in 8.2.3(4), see 8.2.3(6). A higher value may be adopted under the conditions of 8.2.3(7), calculated according to Formula (8.45) [\(-\)].
-
f_cd(MPA) –[\(f_{cd}\)] Design value of the compressive strength of concrete [\(MPa\)].
-
theta(DEG) –[\(\theta\)] Inclination of the compression field in the web, selected within the range of Formula (8.41). A flatter field, [\(\cot\theta < 1\)], is allowed under 8.2.3(11), but only if [\(f_{ywd}\)] is replaced by [\(\sigma_{swd}\)] of Formula (8.56); making that substitution is left to the caller [\(degrees\)].
-
beta_incl(DEG) –[\(\beta_{incl}\)] Angle that follows from the distance of the concentrated load to the support through [\(a_v = z \cdot \cot\beta_{incl}\)], so [\(\beta_{incl} = \arctan(z/a_v)\)] [\(degrees\)].
-
rho_w(DIMENSIONLESS) –[\(\rho_w\)] Shear reinforcement ratio according to Formula (8.43) [\(-\)].
-
f_ywd(MPA) –[\(f_{ywd}\)] Design value of the yield strength of the shear reinforcement [\(MPa\)].
Source code in blueprints/codes/eurocode/fpr_en_1992_1_1_2023/chapter_8_ultimate_limit_states/formula_8_55.py
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 | |
codes.eurocode.fpr_en_1992_1_1_2023.chapter_8_ultimate_limit_states.formula_8_55.Form8Dot55EnhancedShearStressResistance.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 8.55.
Source code in blueprints/codes/eurocode/fpr_en_1992_1_1_2023/chapter_8_ultimate_limit_states/formula_8_55.py
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 123 124 | |