formula_3_30
codes.eurocode.en_1992_1_1_2004.chapter_3_materials.formula_3_30
Formula 3.30 from EN 1992-1-1:2004: Chapter 3 - Materials.
Classes:
-
Form3Dot30RatioLossOfPreStressClass3–Class representing formula 3.30 for the calculation of the ratio between loss of pre-stress and initial pre-stress of class 3.
codes.eurocode.en_1992_1_1_2004.chapter_3_materials.formula_3_30.Form3Dot30RatioLossOfPreStressClass3
Form3Dot30RatioLossOfPreStressClass3(
rho_1000: PERCENTAGE, mu: DIMENSIONLESS, t: HOURS
)
Bases: Formula
Class representing formula 3.30 for the calculation of the ratio between loss of pre-stress and initial pre-stress of class 3.
[\(\frac{\Delta \sigma_{pr}}{\sigma_{pi}}\)] Ratio between loss of pre-stress and initial pre-stress for class 3. [\(-\)].
EN 1992-1-1:2004 art.3.3.2(7) - Formula (3.30)
Parameters:
-
rho_1000(PERCENTAGE) –[\(\rho_{1000}\)] Value of relaxation loss at 1000h after prestressing at an average temperature of 20 degrees Celsius [\(%\)]
-
mu(DIMENSIONLESS) –[\(\mu\)] Ratio between initial pre-stress and characteristic tensile strength [\(-\)] = [\(\frac{\sigma_{pi}}{f_{pk}}\)] Use your own implementation of this formula or use sub_formula_3_28_39_30 class SubForm3Dot282930Mu.
-
t(HOURS) –[\(t\)] Time after prestressing [\(hours\)]
Returns:
-
None–
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_3_materials/formula_3_30.py
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 | |
codes.eurocode.en_1992_1_1_2004.chapter_3_materials.formula_3_30.Form3Dot30RatioLossOfPreStressClass3.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 3.30.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_3_materials/formula_3_30.py
60 61 62 63 64 65 66 67 68 69 70 71 | |