formula_5_101
codes.eurocode.en_1992_2_2005.chapter_5_structural_analysis.formula_5_101
Formula 5.101 from EN 1992-2:2005: Chapter 5 - Structural Analysis.
Classes:
-
Form5Dot101Imperfections–Class representing formula 5.101 for the calculation of initial inclination imperfections, [\(\(\Theta_i\)\)].
-
Form5Dot101Sub1ReductionFactorLengthOrHeight–Class representing sub-formula 5.101 for the calculation of the reduction factor for length
codes.eurocode.en_1992_2_2005.chapter_5_structural_analysis.formula_5_101.Form5Dot101Imperfections
Form5Dot101Imperfections(theta_0: DIMENSIONLESS, alpha_h: DIMENSIONLESS)
Bases: Formula
Class representing formula 5.101 for the calculation of initial inclination imperfections, [\(\(\Theta_i\)\)].
[\(\(\Theta_i\)\)] Initial inclination imperfections, [\(\(\Theta_i\)\)], is a ratio between height and inclination of the member [\(\(-\)\)].
EN 1992-2:2005 art.5.2(5) - Formula (5.101)
Parameters:
-
theta_0(DIMENSIONLESS) –[\(\(\Theta_0\)\)] Basic value [\(\(-\)\)]. Note: The value of [\(\(\Theta_0\)\)] for use in a Country may be found in its National Annex. The recommended value is 1/200 [\(\(-\)\)].
-
alpha_h(DIMENSIONLESS) –[\(\(\alpha_h\)\)] Reduction factor for length or height [\(\(-\)\)]. Use your own implementation of this value or use the SubForm5Dot101ReductionFactorLengthOrHeight class.
Source code in blueprints/codes/eurocode/en_1992_2_2005/chapter_5_structural_analysis/formula_5_101.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | |
codes.eurocode.en_1992_2_2005.chapter_5_structural_analysis.formula_5_101.Form5Dot101Imperfections.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 5.101.
Source code in blueprints/codes/eurocode/en_1992_2_2005/chapter_5_structural_analysis/formula_5_101.py
51 52 53 54 55 56 57 58 59 | |
codes.eurocode.en_1992_2_2005.chapter_5_structural_analysis.formula_5_101.Form5Dot101Sub1ReductionFactorLengthOrHeight
Form5Dot101Sub1ReductionFactorLengthOrHeight(length: M)
Bases: Formula
Class representing sub-formula 5.101 for the calculation of the reduction factor for length or height, [\(\(\alpha_h\)\)].
[\(\(\alpha_h\)\)] Reduction factor for length or height [\(\(-\)\)].
The calculated value of [\(\(\alpha_h\)\)] is below 1.0.
NEN-EN 1992-2+C2:2005 art.5.2(105) - Formula (5.101)
Parameters:
-
length(M) –[\(\(length\)\)] Length or height [\(\(m\)\)].
Source code in blueprints/codes/eurocode/en_1992_2_2005/chapter_5_structural_analysis/formula_5_101.py
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | |
codes.eurocode.en_1992_2_2005.chapter_5_structural_analysis.formula_5_101.Form5Dot101Sub1ReductionFactorLengthOrHeight.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 5.101 subformula 1.
Source code in blueprints/codes/eurocode/en_1992_2_2005/chapter_5_structural_analysis/formula_5_101.py
96 97 98 99 100 101 102 103 104 | |