formula_8_25
codes.eurocode.fpr_en_1992_1_1_2023.chapter_8_ultimate_limit_states.formula_8_25
Formula 8.25 from FprEN 1992-1-1:2023: Chapter 8: Ultimate limit states (ULS).
Classes:
-
Form8Dot25EffectiveDepthFromPrincipalShearForce–Class representing formula 8.25 for the calculation of the effective depth of planar members,
codes.eurocode.fpr_en_1992_1_1_2023.chapter_8_ultimate_limit_states.formula_8_25.Form8Dot25EffectiveDepthFromPrincipalShearForce
Form8Dot25EffectiveDepthFromPrincipalShearForce(
d_x: MM,
d_y: MM,
alpha_v: DEG | None = None,
v_ed_x: N_MM | None = None,
v_ed_y: N_MM | None = None,
)
Bases: Formula
Class representing formula 8.25 for the calculation of the effective depth of planar members, as an alternative to formulas 8.22, 8.23 and 8.24.
[\(d\)] Effective depth of planar members, taken from the direction of the principal shear force [\(mm\)].
FprEN 1992-1-1:2023 (E) art 8.2.1 (5) - Formula (8.25)
This is the alternative offered by the standard to Formulas (8.22), (8.23) and (8.24), not an equivalent of them.
The angle can be supplied in either of the two ways the standard offers. Give [\(\alpha_v\)] directly, or give the two shear forces and let Formula (8.26) produce it. At least one of the two routes is required; an [\(\alpha_v\)] that is given directly always wins, since the standard prints Formula (8.26) as what the angle "may be taken as" and so leaves room for a directly determined direction of the principal shear force.
Parameters:
-
d_x(MM) –[\(d_x\)] Effective depth in the x direction [\(mm\)].
-
d_y(MM) –[\(d_y\)] Effective depth in the y direction [\(mm\)].
-
alpha_v(DEG, default:None) –[\(\alpha_v\)] Angle between the principal shear force and the x-axis, which may be taken according to Formula (8.26), see Form8Dot26AngleBetweenPrincipalShearForceAndXAxis. Leave it out to have it computed from the two shear forces instead. It lies between 0 and 90 degrees, as Formula (8.26) can produce nothing else [\(degrees\)].
-
v_ed_x(N_MM, default:None) –[\(v_{Ed,x}\)] Out-of-plane design shear force per unit width perpendicular to the x direction. Used only when [\(\alpha_v\)] is left out, and taken as a magnitude [\(N/mm\)].
-
v_ed_y(N_MM, default:None) –[\(v_{Ed,y}\)] Out-of-plane design shear force per unit width perpendicular to the y direction. Used only when [\(\alpha_v\)] is left out, and taken as a magnitude [\(N/mm\)].
Source code in blueprints/codes/eurocode/fpr_en_1992_1_1_2023/chapter_8_ultimate_limit_states/formula_8_25.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 | |
codes.eurocode.fpr_en_1992_1_1_2023.chapter_8_ultimate_limit_states.formula_8_25.Form8Dot25EffectiveDepthFromPrincipalShearForce.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 8.25.
Source code in blueprints/codes/eurocode/fpr_en_1992_1_1_2023/chapter_8_ultimate_limit_states/formula_8_25.py
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 | |