formula_8_38_39_40
codes.eurocode.fpr_en_1992_1_1_2023.chapter_8_ultimate_limit_states.formula_8_38_39_40
Formula 8.38, 8.39 and 8.40 from FprEN 1992-1-1:2023: Chapter 8: Ultimate limit states (ULS).
Classes:
-
Form8Dot38To40ReinforcementRatioPlanarMembers–Class representing formulas 8.38, 8.39 and 8.40 for the calculation of the reinforcement ratio of planar members
codes.eurocode.fpr_en_1992_1_1_2023.chapter_8_ultimate_limit_states.formula_8_38_39_40.Form8Dot38To40ReinforcementRatioPlanarMembers
Form8Dot38To40ReinforcementRatioPlanarMembers(
v_ed_x: N_MM,
v_ed_y: N_MM,
rho_l_x: DIMENSIONLESS,
rho_l_y: DIMENSIONLESS,
alpha_v: DEG | None = None,
)
Bases: Formula
Class representing formulas 8.38, 8.39 and 8.40 for the calculation of the reinforcement ratio of planar members with different reinforcement ratios in both directions, taken as a function of the ratio of the shear forces.
[\(\rho_l\)] Reinforcement ratio of planar members, as a function of the ratio of the shear forces [\(v_{Ed,y}/v_{Ed,x}\)] [\(-\)].
FprEN 1992-1-1:2023 (E) art 8.2.2 (7) - Formula (8.38), (8.39) and (8.40)
The boundaries of the ratio are one-sided as printed: a ratio of exactly 0.5 falls under Formula (8.38) and a ratio of exactly 2 falls under Formula (8.40). The standard gives no rule for [\(v_{Ed,x} = 0\)], for which the ratio is undefined, so that input is rejected.
Both shear forces are taken as magnitudes. They are components of a shear force vector and the standard places no restriction on their sign, but the printed boundaries only order a ratio of magnitudes: a signed ratio turns negative as soon as one component does, and every negative value would fall under Formula (8.38) regardless of which direction carries the shear. This matches Formulas (8.22) to (8.24), which the standard writes with the same ratio and the same two boundaries.
Parameters:
-
v_ed_x(N_MM) –[\(v_{Ed,x}\)] Out-of-plane design shear force per unit width acting on the cross-section perpendicular to the x direction [\(N/mm\)].
-
v_ed_y(N_MM) –[\(v_{Ed,y}\)] Out-of-plane design shear force per unit width acting on the cross-section perpendicular to the y direction [\(N/mm\)].
-
rho_l_x(DIMENSIONLESS) –[\(\rho_{l,x}\)] Reinforcement ratio in the x direction [\(-\)].
-
rho_l_y(DIMENSIONLESS) –[\(\rho_{l,y}\)] Reinforcement ratio in the y direction [\(-\)].
-
alpha_v(DEG, default:None) –[\(\alpha_v\)] Angle between the principal shear force and the x-axis, which the standard defines in 8.2.1(5). When it is left out it is computed from the two shear forces with Formula (8.26), [\(\arctan\left(\left|v_{Ed,y}\right| / \left|v_{Ed,x}\right|\right)\)], the value that clause allows it to be taken as and the only one consistent with the forces passed here. That clause prints Formula (8.26) as what the angle "may be taken as", so a directly determined direction of the principal shear force is admissible as well and can be passed here instead; it is then the caller's responsibility to keep it consistent with the two forces. The angle only reaches Formula (8.39). It lies between 0 and 90 degrees, as Formula (8.26) can produce nothing else [\(degrees\)].
Source code in blueprints/codes/eurocode/fpr_en_1992_1_1_2023/chapter_8_ultimate_limit_states/formula_8_38_39_40.py
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 68 69 70 | |
codes.eurocode.fpr_en_1992_1_1_2023.chapter_8_ultimate_limit_states.formula_8_38_39_40.Form8Dot38To40ReinforcementRatioPlanarMembers.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formulas 8.38, 8.39 and 8.40.
Source code in blueprints/codes/eurocode/fpr_en_1992_1_1_2023/chapter_8_ultimate_limit_states/formula_8_38_39_40.py
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | |