formula_3_11
codes.eurocode.en_1992_1_1_2004.chapter_3_materials.formula_3_11
Formula 3.11 from EN 1992-1-1:2004: Chapter 3 - Materials.
Classes:
-
Form3Dot11AutogeneShrinkage–Class representing formula 3.11, which calculates the autogene shrinkage.
codes.eurocode.en_1992_1_1_2004.chapter_3_materials.formula_3_11.Form3Dot11AutogeneShrinkage
Form3Dot11AutogeneShrinkage(
beta_as_t: DIMENSIONLESS, epsilon_ca_inf: DIMENSIONLESS
)
Bases: Formula
Class representing formula 3.11, which calculates the autogene shrinkage.
[\(\epsilon_{ca}(t)\)] Autogene shrinkage [\(-\)].
EN 1992-1-1:2004 art.3.1.4(6) - Formula (3.11)
Parameters:
-
beta_as_t(DIMENSIONLESS) –[\(\beta_{as}(t)\)] Coefficient dependent on time in days for autogene shrinkage [\(-\)]. = 1 - exp(-0.2 * t^0.5) Use your own implementation of this formula or use the Form3Dot13CoefficientTimeAutogeneShrinkage class
-
epsilon_ca_inf(DIMENSIONLESS) –[\(\epsilon_{ca}(\infty)\)] Autogene shrinkage at infinity [\(-\)]. = 2.5 * (fck - 10) E-6 Use your own implementation of this formula or use the Form3Dot12AutogeneShrinkageInfinity class.
Returns:
-
None–
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_3_materials/formula_3_11.py
15 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 | |
codes.eurocode.en_1992_1_1_2004.chapter_3_materials.formula_3_11.Form3Dot11AutogeneShrinkage.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 3.11.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_3_materials/formula_3_11.py
53 54 55 56 57 58 59 60 61 | |