Skip to content

formula_5_6

codes.eurocode.en_1992_1_1_2004.chapter_5_structural_analysis.formula_5_6

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

Classes:

codes.eurocode.en_1992_1_1_2004.chapter_5_structural_analysis.formula_5_6.Form5Dot6TransverseForceEffectRoofDiaphragm

Form5Dot6TransverseForceEffectRoofDiaphragm(theta_i: DIMENSIONLESS, n_a: KN)

Bases: Formula

Class representing formula 5.6 for the calculation of the effect of the inclination on roof diaphragm, [\(H_{i}\)]. See Figure 5.1 c2.

[\(H_{i}\)] Effect of the inclination on roof diaphragm [\(kN\)].

EN 1992-1-1:2004 art.5.2(8) - Formula (5.6)

Parameters:

  • theta_i (DIMENSIONLESS) –

    [\(Θ_{i}\)] Eccentricity, initial inclination imperfections [-].

  • n_a (KN) –

    [\(N_{a}\)] Axial force in the member [\(kN\)].

Notes

where [\(N_{a}\)] is a longitudinal force contributing to [\(H_{i}\)]. Positive values for compression, tension is not allowed.

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_5_structural_analysis/formula_5_6.py
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
def __init__(
    self,
    theta_i: DIMENSIONLESS,
    n_a: KN,
) -> None:
    r"""[$H_{i}$] Effect of the inclination on roof diaphragm [$kN$].

    EN 1992-1-1:2004 art.5.2(8) - Formula (5.6)

    Parameters
    ----------
    theta_i : DIMENSIONLESS
        [$Θ_{i}$] Eccentricity, initial inclination imperfections [-].
    n_a : KN
        [$N_{a}$] Axial force in the member [$kN$].

    Notes
    -----
    where [$N_{a}$] is a longitudinal force contributing to [$H_{i}$].
    Positive values for compression, tension is not allowed.
    """
    super().__init__()
    self.theta_i = theta_i
    self.n_a = n_a

codes.eurocode.en_1992_1_1_2004.chapter_5_structural_analysis.formula_5_6.Form5Dot6TransverseForceEffectRoofDiaphragm.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 5.6.

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_5_structural_analysis/formula_5_6.py
55
56
57
58
59
60
61
62
63
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 5.6."""
    return LatexFormula(
        return_symbol=r"H_{i}",
        result=f"{self:.{n}f}",
        equation=r"Θ_{i} \cdot N_{a}",
        numeric_equation=rf"{self.theta_i:.{n}f} \cdot {self.n_a:.{n}f}",
        comparison_operator_label="=",
    )