formula_6_29rho
codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_29rho
Formula 6.29rho from EN 1993-1-1:2005: Chapter 6 - Ultimate Limit State.
Classes:
-
Form6Dot29Rho–Class representing formula 6.29rho for the calculation of [\(\rho\)], where no torsion is present.
-
Form6Dot29RhoWithTorsion–Class representing formula 6.29rho with torsion for the calculation of [\(\rho\)].
codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_29rho.Form6Dot29Rho
Form6Dot29Rho(v_ed: N, v_pl_rd: N)
Bases: Formula
Class representing formula 6.29rho for the calculation of [\(\rho\)], where no torsion is present.
[\(\rho\)] Calculation of the reduction factor, where no torsion is present [\(\text{dimensionless}\)].
EN 1993-1-1:2005 art.6.2.10(3) - Formula (6.29rho)
Parameters:
-
v_ed(N) –[\(V_{Ed}\)] Design shear force [\(N\)].
-
v_pl_rd(N) –[\(V_{pl,Rd}\)] Plastic shear resistance, obtained from 6.2.6(2) [\(N\)]. Note, see also 6.2.10(3)
Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_29rho.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | |
codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_29rho.Form6Dot29Rho.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 6.29rho.
Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_29rho.py
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 77 78 79 80 81 82 | |
codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_29rho.Form6Dot29RhoWithTorsion
Form6Dot29RhoWithTorsion(v_ed: N, v_pl_t_rd: N)
Bases: Formula
Class representing formula 6.29rho with torsion for the calculation of [\(\rho\)].
[\(\rho\)] Calculation of the reduction factor with torsion [\(\text{dimensionless}\)].
EN 1993-1-1:2005 art.6.2.7(4) - Formula (6.29rho with torsion)
Parameters:
-
v_ed(N) –[\(V_{Ed}\)] Design shear force [\(N\)].
-
v_pl_t_rd(N) –[\(V_{pl,T,Rd}\)] Plastic shear resistance with torsion [\(N\)]. Note, see also 6.2.7
Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_29rho.py
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | |
codes.eurocode.en_1993_1_1_2005.chapter_6_ultimate_limit_state.formula_6_29rho.Form6Dot29RhoWithTorsion.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 6.29rho with torsion.
Source code in blueprints/codes/eurocode/en_1993_1_1_2005/chapter_6_ultimate_limit_state/formula_6_29rho.py
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | |