formula_7_11
codes.eurocode.en_1992_1_1_2004.chapter_7_serviceability_limit_state.formula_7_11
Formula 7.11 from EN 1992-1-1:2004: Chapter 7 - Serviceability Limit State.
Classes:
-
Form7Dot11MaximumCrackSpacing–Class representing formula 7.11 for the calculation of [\(s_{r,max}\)].
codes.eurocode.en_1992_1_1_2004.chapter_7_serviceability_limit_state.formula_7_11.Form7Dot11MaximumCrackSpacing
Form7Dot11MaximumCrackSpacing(
k_3: DIMENSIONLESS,
c: MM,
k_1: DIMENSIONLESS,
k_2: DIMENSIONLESS,
k_4: DIMENSIONLESS,
diam: MM,
rho_p_eff: DIMENSIONLESS,
)
Bases: Formula
Class representing formula 7.11 for the calculation of [\(s_{r,max}\)].
[\(s_{r,max}\)] Calculation of the maximum crack spacing [\(mm\)].
EN 1992-1-1:2004 art.7.3.4(3) - Formula (7.11)
Parameters:
-
k_3(DIMENSIONLESS) –[\(k_3\)] Coefficient, the recommended value is 3.4 [\(-\)].
-
c(MM) –[\(c\)] Cover to the longitudinal reinforcement [\(mm\)].
-
k_1(DIMENSIONLESS) –[\(k_1\)] Coefficient which takes account of the bond properties of the bonded reinforcement. Use 0.8 for high bond bars and 1.6 for bars with an effectively plain surface (e.g. prestressing tendons) [\(-\)].
-
k_2(DIMENSIONLESS) –[\(k_2\)] Coefficient which takes account of the distribution of strain. Use 0.5 for bending, 1.0 for pure tension. For cases of eccentric tension or for local areas, intermediate values of k2 should be used which may be calculated with equation (7.13) [\(-\)] .
-
k_4(DIMENSIONLESS) –[\(k_4\)] Coefficient, the recommended value is 0.425 [\(-\)].
-
diam(MM) –[\(diam\)] Bar diameter [\(mm\)]. Where a mixture of bar diameters is used in a section, an equivalent diameter, \(⌀_{eq}\), should be used. For a section with \(n_1\) bars of diameter \(⌀_1\) and \(n_2\) bars of diameter \(⌀_2\), expression (7.12) should be used to calculate \(⌀_{eq}\).
-
rho_p_eff(DIMENSIONLESS) –[\(\rho_{p,eff}\)] Effective reinforcement ratio [\(-\)].
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_7_serviceability_limit_state/formula_7_11.py
16 17 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 51 52 53 54 55 56 57 58 59 60 | |
codes.eurocode.en_1992_1_1_2004.chapter_7_serviceability_limit_state.formula_7_11.Form7Dot11MaximumCrackSpacing.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 7.11.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_7_serviceability_limit_state/formula_7_11.py
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | |