formula_6_71
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_71
Formula 6.71 from EN 1992-1-1:2004: Chapter 6 - Ultimate limit state.
Classes:
-
Form6Dot71CriteriaBasedOnStressRange–Class representing formula 6.71 for the calculation of the fatigue criteria based on stress range.
-
Form6Dot71CriteriaBasedOnStressRangeLHS–Class representing Left Hand Side of formula 6.71 for the calculation of the fatigue criteria based on stress range.
-
Form6Dot71CriteriaBasedOnStressRangeRHS–Class representing Right Hand Side of formula 6.71 for the calculation of the fatigue criteria based on stress range.
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_71.Form6Dot71CriteriaBasedOnStressRange
Form6Dot71CriteriaBasedOnStressRange(
gamma_f_fat: DIMENSIONLESS,
delta_sigma_s_equ_n_star: MPA,
delta_sigma_rsk_n_star: MPA,
gamma_s_fat: DIMENSIONLESS,
)
Bases: ComparisonFormula
Class representing formula 6.71 for the calculation of the fatigue criteria based on stress range.
[\(\text{CHECK}\)] Criteria met, based on damage accumulation.
NEN-EN 1993-1-1+C2:2011 art.6.8.5 - Formula (6.71)
Parameters:
-
gamma_f_fat(DIMENSIONLESS) –[\(\gamma_{F,fat}\)] Partial factor for fatigue actions [\(-\)].
-
delta_sigma_s_equ_n_star(MPA) –[\(\Delta\sigma_{s,equ}(N*)\)] Damage equivalent stress range for types of reinforcement and considering number of cycles N* [\(MPa\)].
-
delta_sigma_rsk_n_star(MPA) –[\(\Delta\sigma_{Rsk}(N*)\)] Stress range at N* cycles from the S-N curve in Figure 6.30 [\(MPa\)].
-
gamma_s_fat(DIMENSIONLESS) –[\(\gamma_{S,fat}\)] Partial factor for reinforcing or prestressing steel under fatigue loading [\(-\)].
Returns:
-
None–
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_71.py
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | |
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_71.Form6Dot71CriteriaBasedOnStressRange.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for formula 6.71.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_71.py
190 191 192 193 194 195 196 197 198 199 200 201 | |
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_71.Form6Dot71CriteriaBasedOnStressRangeLHS
Form6Dot71CriteriaBasedOnStressRangeLHS(
gamma_f_fat: DIMENSIONLESS, delta_sigma_s_equ_n_star: MPA
)
Bases: Formula
Class representing Left Hand Side of formula 6.71 for the calculation of the fatigue criteria based on stress range.
[\(\Delta\sigma_{Ed}\)] Loading side of equation [\(MPa\)].
NEN-EN 1993-1-1+C2:2011 art.6.8.5 - Formula (6.71)
Parameters:
-
gamma_f_fat(DIMENSIONLESS) –[\(\gamma_{F,fat}\)] Partial factor for fatigue actions [\(-\)].
-
delta_sigma_s_equ_n_star(MPA) –[\(\Delta\sigma_{s,equ}(N*)\)] Damage equivalent stress range for types of reinforcement and considering number of cycles N* [\(MPa\)].
Returns:
-
None–
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_71.py
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | |
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_71.Form6Dot71CriteriaBasedOnStressRangeLHS.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for left hand side formula 6.71.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_71.py
53 54 55 56 57 58 59 60 61 | |
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_71.Form6Dot71CriteriaBasedOnStressRangeRHS
Form6Dot71CriteriaBasedOnStressRangeRHS(
delta_sigma_rsk_n_star: MPA, gamma_s_fat: DIMENSIONLESS
)
Bases: Formula
Class representing Right Hand Side of formula 6.71 for the calculation of the fatigue criteria based on stress range.
[\(\Delta\sigma_{Rd}\)] Resistance side of equation [\(MPa\)].
NEN-EN 1993-1-1+C2:2011 art.6.8.5 - Formula (6.71)
Parameters:
-
delta_sigma_rsk_n_star(MPA) –[\(\Delta\sigma_{Rsk}(N*)\)] Stress range at N* cycles from the S-N curve in Figure 6.30 [\(MPa\)].
-
gamma_s_fat(DIMENSIONLESS) –[\(\gamma_{S,fat}\)] Partial factor for reinforcing or prestressing steel under fatigue loading [\(-\)].
Returns:
-
None–
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_71.py
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | |
codes.eurocode.en_1992_1_1_2004.chapter_6_ultimate_limit_state.formula_6_71.Form6Dot71CriteriaBasedOnStressRangeRHS.latex
latex(n: int = 3) -> LatexFormula
Returns LatexFormula object for right hand side formula 6.71.
Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_6_ultimate_limit_state/formula_6_71.py
101 102 103 104 105 106 107 108 109 | |