formula_5_9
codes.eurocode.en_1993_5_2007.chapter_5_ultimate_limit_states.formula_5_9
Formula 5.9 from EN 1993-5:2007 Chapter 5 - Ultimate limit state.
Classes:
-
Form5Dot9ReducedBendingMomentResistance–Class representing formula 5.9 for reduced design bending moment resistance of the cross-section.
codes.eurocode.en_1993_5_2007.chapter_5_ultimate_limit_states.formula_5_9.Form5Dot9ReducedBendingMomentResistance
Form5Dot9ReducedBendingMomentResistance(
beta_b: DIMENSIONLESS,
w_pl: MM3,
rho: DIMENSIONLESS,
a_v: MM2,
t_w: MM,
alpha: DEG,
f_y: MPA,
gamma_m_0: DIMENSIONLESS,
mc_rd: KNM,
)
Bases: Formula
Class representing formula 5.9 for reduced design bending moment resistance of the cross-section.
[\(M_{V,Rd}\)] Calculate reduced design bending moment resistance of the cross-section allowing for the shear force in [\(kNm\)].
This calculation is specifically for sheet pile cross-sections, particularly U-profiles and Z-profiles.
EN 1993-5:2007(E) art.5.2.2(9) - Formula (5.9)
Parameters:
-
beta_b(DIMENSIONLESS) –[\(β_{b}\)] Reduction factor for the bending resistance of the cross-section, which takes account of possible lack of shear force transmission in the interlocks [\(-\)]. Defined in EN 1993-5:2007(E) art. 5.2.2(2) or CUR166, part 2, par. 3.3.2.
-
w_pl(MM3) –[\(W_{pl}\)] Plastic section modulus in [\(mm^3\)].
-
rho(DIMENSIONLESS) –[\(ρ\)] Reduction factor for shear resistance of the cross-section, according EN 1993-5:2007(E) art. 5.2.2(9) formula 5.10 [\(-\)].
-
a_v(MM2) –[\(A_{V}\)] Projected shear area for each web, acting in the same direction as VEd in [\(mm^2\)].
-
t_w(MM) –[\(t_{w}\)] Thickness of the web in [\(mm\)].
-
alpha(DEG) –[\(α\)] the inclination of the web according to EN 1993-5:2007(E) Figure 5-1 in [\(degrees\)].
-
f_y(MPA) –[\(f_{y}\)] Yield strength in [\(MPa\)].
-
gamma_m_0(DIMENSIONLESS) –[\(γ_{M0}\)] Partial factor for material properties in [\(-\)].
-
mc_rd(KNM) –[\(M_{c,Rd}\)] Design moment resistance of the cross-section in [\(kNm\)].
The
mc_rdparameter represents the design moment resistance of the cross-section. In the context of the formula for reduced bending moment resistance, it serves as an upper bound. The formula calculates the reduced design bending moment resistance (m_v_rd) and then returns the minimum ofm_v_rdandmc_rd. This means that the result of the formula will never exceedmc_rd, makingmc_rdan upper bound for this formula.[\(M_{v,Rd} \leq M_{c,Rd}\)]
Source code in blueprints/codes/eurocode/en_1993_5_2007/chapter_5_ultimate_limit_states/formula_5_9.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 64 65 66 67 68 69 70 71 72 73 74 75 76 | |
codes.eurocode.en_1993_5_2007.chapter_5_ultimate_limit_states.formula_5_9.Form5Dot9ReducedBendingMomentResistance.latex
latex(n: int = 2) -> LatexFormula
Returns LatexFormula object for formula 5.9.
Source code in blueprints/codes/eurocode/en_1993_5_2007/chapter_5_ultimate_limit_states/formula_5_9.py
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | |