formula_7_16_ab
codes.eurocode.en_1992_1_1_2004.chapter_7_serviceability_limit_state.formula_7_16_ab
Formula 7.16a/b from EN 1992-1-1:2004: Chapter 7 - Serviceability limit state.
Classes:
-
Form7Dot16ReferenceReinforcementRatio–Class representing formula 7.16 for the calculation of [\(\rho_0\)].
-
Form7Dot16abSpanDepthRatio–Class representing formula 7.16a/b for the calculation of the limit span/depth ratio.
codes.eurocode.en_1992_1_1_2004.chapter_7_serviceability_limit_state.formula_7_16_ab.Form7Dot16ReferenceReinforcementRatio
Form7Dot16ReferenceReinforcementRatio(f_ck: MPA)
Bases: Formula
Class representing formula 7.16 for the calculation of [\(\rho_0\)].
[\(\rho_0\)] Reference reinforcement ratio [\(-\)].
EN 1992-1-1:2004 art.7.4.2(2) - Formula (7.16)
Parameters:
-
f_ck(MPA) –[\(f_{ck}\)] Characteristic compressive strength of concrete [\(MPa\)].
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_7_serviceability_limit_state/formula_7_16_ab.py
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | |
codes.eurocode.en_1992_1_1_2004.chapter_7_serviceability_limit_state.formula_7_16_ab.Form7Dot16ReferenceReinforcementRatio.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 7.16_rho_0.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_7_serviceability_limit_state/formula_7_16_ab.py
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | |
codes.eurocode.en_1992_1_1_2004.chapter_7_serviceability_limit_state.formula_7_16_ab.Form7Dot16abSpanDepthRatio
Form7Dot16abSpanDepthRatio(
capital_k: DIMENSIONLESS,
f_ck: MPA,
rho: DIMENSIONLESS,
rho_0: DIMENSIONLESS,
rho_prime: DIMENSIONLESS,
)
Bases: Formula
Class representing formula 7.16a/b for the calculation of the limit span/depth ratio.
[\(\frac{l}{d}\)] Limit span/depth ratio [\(-\)].
EN 1992-1-1:2004 art.7.4.2(2) - Formula (7.16a and 7.16b)
Parameters:
-
capital_k(DIMENSIONLESS) –[\(K\)] Factor to take into account the different structural systems [\(-\)].
-
f_ck(MPA) –[\(f_{ck}\)] Characteristic compressive strength of concrete [\(MPa\)].
-
rho(DIMENSIONLESS) –[\(\rho\)] Required tension reinforcement ratio at mid-span to resist the moment due to the design loads (at support for cantilevers) [\(-\)].
-
rho_0(DIMENSIONLESS) –[\(\rho_0\)] Reference reinforcement ratio [\(\sqrt{f_{ck}} \cdot 10^{-3}\)] [\(-\)].
-
rho_prime(DIMENSIONLESS) –[\(\rho'\)] Required compression reinforcement ratio at mid-span to resist the moment due to design loads (at support for cantilevers) [\(-\)].
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_7_serviceability_limit_state/formula_7_16_ab.py
18 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 | |
codes.eurocode.en_1992_1_1_2004.chapter_7_serviceability_limit_state.formula_7_16_ab.Form7Dot16abSpanDepthRatio.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 7.16a/b.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_7_serviceability_limit_state/formula_7_16_ab.py
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | |