formula_7_2
codes.eurocode.en_1992_1_1_2004.chapter_7_serviceability_limit_state.formula_7_2
Formula 7.2 and 7.2sub1 from EN 1992-1-1:2004: Chapter 7 - Serviceability Limit State.
Classes:
-
Form7Dot2StressDistributionCoefficient–Class representing formula 7.2 for the calculation of [\(k_c\)].
-
Form7Dot2Sub1AxialForceCoefficient–Class representing formula 7.2sub1 for the calculation of [\(k_1\)] factor.
codes.eurocode.en_1992_1_1_2004.chapter_7_serviceability_limit_state.formula_7_2.Form7Dot2StressDistributionCoefficient
Form7Dot2StressDistributionCoefficient(
sigma_c: MPA, k_1: DIMENSIONLESS, h: MM, f_ct_eff: MPA
)
Bases: Formula
Class representing formula 7.2 for the calculation of [\(k_c\)].
[\(k_c\)] Calculation of the coefficient for stress distribution for bending or bending combined with axial forces.
EN 1992-1-1:2004 art.7.3.2(2) - Formula (7.2)
Parameters:
-
sigma_c(MPA) –[\(\sigma_c\)] Compressive stress in the concrete, according to 7.4 [\(MPa\)].
-
k_1(DIMENSIONLESS) –[\(k_1\)] Coefficient considering the effects of axial forces on the stress distribution, according to 7.2sub1 [\(-\)].
-
h(MM) –[\(h\)] Overall depth of the section [\(mm\)].
-
f_ct_eff(MPA) –[\(f_{ct,eff}\)] Mean value of the tensile strength of the concrete effective at the time when the cracks may first be expected to occur [\(MPa\)].
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_7_serviceability_limit_state/formula_7_2.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 | |
codes.eurocode.en_1992_1_1_2004.chapter_7_serviceability_limit_state.formula_7_2.Form7Dot2StressDistributionCoefficient.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 7.2.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_7_serviceability_limit_state/formula_7_2.py
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | |
codes.eurocode.en_1992_1_1_2004.chapter_7_serviceability_limit_state.formula_7_2.Form7Dot2Sub1AxialForceCoefficient
Form7Dot2Sub1AxialForceCoefficient(n_ed: MPA, h: MM)
Bases: Formula
Class representing formula 7.2sub1 for the calculation of [\(k_1\)] factor.
[\(k_1\)] Calculation of the coefficient for stress distribution for bending or bending combined with axial forces.
EN 1992-1-1:2004 art.7.3.2(2) - Formula (7.2sub1)
Parameters:
-
n_ed(MPA) –[\(N_{Ed}\)] Axial force at the serviceability limit state acting on the part of the cross-section under consideration (compressive force positive). [\(N_{Ed}\)] should be determined considering the characteristic values of prestress and axial forces under the relevant combination of actions.
-
h(MM) –[\(h\)] Overall depth of the section [\(mm\)].
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_7_serviceability_limit_state/formula_7_2.py
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | |
codes.eurocode.en_1992_1_1_2004.chapter_7_serviceability_limit_state.formula_7_2.Form7Dot2Sub1AxialForceCoefficient.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 7.2sub1.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_7_serviceability_limit_state/formula_7_2.py
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | |