Skip to content

formula_5_10b

codes.eurocode.en_1992_1_1_2004.chapter_5_structural_analysis.formula_5_10b

Formula 5.10b from EN 1992-1-1:2004: Chapter 5 - Structural Analysis.

Classes:

codes.eurocode.en_1992_1_1_2004.chapter_5_structural_analysis.formula_5_10b.Form5Dot10bRedistributionOfMomentsUpperFck

Form5Dot10bRedistributionOfMomentsUpperFck(
    delta: DIMENSIONLESS, k3: DIMENSIONLESS, k4: DIMENSIONLESS, xu: M, d: M
)

Class representing formula 5.10b for the redistribution of moments in continuous beams or slabs when [\(f_{ck} > 50 MPa\)].

[\(\delta\)] Redistribution of moments in continuous beams or slabs when [\(f_{ck} > 50 MPa\)].

EN 1992-1-1:2004 art.5.5(4) - Formula (5.10b)

Parameters:

  • delta (DIMENSIONLESS) –

    [\(\delta\)] is the ratio of the redistributed moment to the elastic moment.

  • k3 (DIMENSIONLESS) –

    [\(k_3\)] is a coefficient for redistribution.

  • k4 (DIMENSIONLESS) –

    [\(k_4\)] is a coefficient for redistribution.

  • xu (M) –

    [\(x_u\)] is the depth of the compression zone in the ultimate limit state after redistribution.

  • d (M) –

    [\(d\)] is the effective depth of the section.

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_5_structural_analysis/formula_5_10b.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
def __init__(self, delta: DIMENSIONLESS, k3: DIMENSIONLESS, k4: DIMENSIONLESS, xu: M, d: M) -> None:
    r"""[$\delta$] Redistribution of moments in continuous beams or slabs when [$f_{ck} > 50 MPa$].

    EN 1992-1-1:2004 art.5.5(4) - Formula (5.10b)

    Parameters
    ----------
    delta : DIMENSIONLESS
        [$\delta$] is the ratio of the redistributed moment to the elastic moment.
    k3 : DIMENSIONLESS
        [$k_3$] is a coefficient for redistribution.
    k4 : DIMENSIONLESS
        [$k_4$] is a coefficient for redistribution.
    xu : M
        [$x_u$] is the depth of the compression zone in the ultimate limit state after redistribution.
    d : M
        [$d$] is the effective depth of the section.
    """
    super().__init__()
    self.delta = delta
    self.k3 = k3
    self.k4 = k4
    self.xu = xu
    self.d = d
    raise_if_less_or_equal_to_zero(delta=delta, k3=k3, k4=k4, xu=xu, d=d)

codes.eurocode.en_1992_1_1_2004.chapter_5_structural_analysis.formula_5_10b.Form5Dot10bRedistributionOfMomentsUpperFck.left_hand_side property

left_hand_side: DIMENSIONLESS

Calculate the left hand side of the comparison.

Returns:

  • DIMENSIONLESS

    Left hand side of the comparison.

codes.eurocode.en_1992_1_1_2004.chapter_5_structural_analysis.formula_5_10b.Form5Dot10bRedistributionOfMomentsUpperFck.ratio property

ratio: DIMENSIONLESS

Ratio between left hand side and right hand side of the comparison, commonly referred to as unity check.

codes.eurocode.en_1992_1_1_2004.chapter_5_structural_analysis.formula_5_10b.Form5Dot10bRedistributionOfMomentsUpperFck.right_hand_side property

right_hand_side: DIMENSIONLESS

Calculate the right hand side of the comparison.

Returns:

  • DIMENSIONLESS

    Right hand side of the comparison.

codes.eurocode.en_1992_1_1_2004.chapter_5_structural_analysis.formula_5_10b.Form5Dot10bRedistributionOfMomentsUpperFck.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 5.10b.

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_5_structural_analysis/formula_5_10b.py
78
79
80
81
82
83
84
85
86
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 5.10b."""
    return LatexFormula(
        return_symbol=r"CHECK",
        result="OK" if self.__bool__() else "\\text{Not OK}",
        equation=r"\delta \geq k_3 + k_4 \frac{x_u}{d}",
        numeric_equation=rf"{self.left_hand_side:.{n}f} \geq {self.k3} + {self.k4} \frac{{{self.xu}}}{{{self.d}}}",
        comparison_operator_label=r"\rightarrow",
    )