formula_7_9
codes.eurocode.en_1992_1_1_2004.chapter_7_serviceability_limit_state.formula_7_9
Formula 7.9 from EN 1992-1-1:2004: Chapter 7 - Serviceability Limit State.
Classes:
-
Form7Dot9EpsilonSmMinusEpsilonCm–Class representing formula 7.9 for the calculation of [\(\epsilon_{sm} - \epsilon_{cm}\)].
codes.eurocode.en_1992_1_1_2004.chapter_7_serviceability_limit_state.formula_7_9.Form7Dot9EpsilonSmMinusEpsilonCm
Form7Dot9EpsilonSmMinusEpsilonCm(
sigma_s: MPA,
k_t: DIMENSIONLESS,
f_ct_eff: MPA,
rho_p_eff: DIMENSIONLESS,
e_s: MPA,
e_cm: MPA,
)
Bases: Formula
Class representing formula 7.9 for the calculation of [\(\epsilon_{sm} - \epsilon_{cm}\)].
[\(\epsilon_{sm} - \epsilon_{cm}\)] Calculation of the strain difference [\(\epsilon\)].
EN 1992-1-1:2004 art.7.3.4(2) - Formula (7.9)
Parameters:
-
sigma_s(MPA) –[\(\sigma_s\)] Stress in the reinforcement [\(MPa\)].
-
k_t(DIMENSIONLESS) –[\(k_t\)] Factor dependent on the duration of the load, 0.6 for short term loading, 0.4 for long term loading [\(-\)].
-
f_ct_eff(MPA) –[\(f_{ct,eff}\)] Effective tensile strength of concrete [\(MPa\)].
-
rho_p_eff(DIMENSIONLESS) –[\(\rho_{p,eff}\)] Effective reinforcement ratio, see equation 7.10 [\(-\)].
-
e_s(MPA) –[\(e_s\)] Modulus of elasticity of reinforcement [\(MPa\)].
-
e_cm(MPA) –[\(e_{cm}\)] Modulus of elasticity of concrete [\(MPa\)].
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_7_serviceability_limit_state/formula_7_9.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 | |
codes.eurocode.en_1992_1_1_2004.chapter_7_serviceability_limit_state.formula_7_9.Form7Dot9EpsilonSmMinusEpsilonCm.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 7.9.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_7_serviceability_limit_state/formula_7_9.py
69 70 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 | |