Skip to content

formula_9_14

codes.eurocode.en_1992_1_1_2004.chapter_9_detailling_and_specific_rules.formula_9_14

Formula 9.14 from EN 1992-1-1:2004: Chapter 9 - Detailing and specific rules.

Classes:

codes.eurocode.en_1992_1_1_2004.chapter_9_detailling_and_specific_rules.formula_9_14.Form9Dot14SplittingForceColumnOnRock

Form9Dot14SplittingForceColumnOnRock(c: MM, h: MM, n_ed: KN)

Bases: Formula

Class representing the formula 9.14 for the calculation of the splitting force on a column footing on rock.

[\(F_s\)] Splitting force on a column footing on rock [\(kN\)].

EN 1992-1-1:2004 art.9.8.4(2) - Formula (9.14)

Parameters:

  • c (MM) –

    [\(c\)] Width over which [\(N_{Ed}\)] is applied [\(mm\)].

  • h (MM) –

    [\(h\)] Lesser of [\(b\)] and [\(H\)] from figure 9.14 [\(mm\)].

  • n_ed (KN) –

    [\(N_{Ed}\)] Design value of the applied axial force [\(kN\)].

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_9_detailling_and_specific_rules/formula_9_14.py
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
def __init__(
    self,
    c: MM,
    h: MM,
    n_ed: KN,
) -> None:
    r"""[$F_s$] Splitting force on a column footing on rock [$kN$].

    EN 1992-1-1:2004 art.9.8.4(2) - Formula (9.14)

    Parameters
    ----------
    c: MM
        [$c$] Width over which [$N_{Ed}$] is applied [$mm$].
    h: MM
        [$h$] Lesser of [$b$] and [$H$] from figure 9.14 [$mm$].
    n_ed: KN
        [$N_{Ed}$] Design value of the applied axial force [$kN$].
    """
    super().__init__()
    self.c = c
    self.h = h
    self.n_ed = n_ed

codes.eurocode.en_1992_1_1_2004.chapter_9_detailling_and_specific_rules.formula_9_14.Form9Dot14SplittingForceColumnOnRock.latex

latex(n: int = 2) -> LatexFormula

Returns LatexFormula object for formula 9.14.

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_9_detailling_and_specific_rules/formula_9_14.py
50
51
52
53
54
55
56
57
58
def latex(self, n: int = 2) -> LatexFormula:
    """Returns LatexFormula object for formula 9.14."""
    return LatexFormula(
        return_symbol=r"F_s",
        result=f"{self:.{n}f}",
        equation=r"0.25 \cdot ( 1 - c / h ) \cdot N_{Ed}",
        numeric_equation=rf"0.25 \cdot ( 1 - {self.c:.{n}f} / {self.h:.{n}f} ) \cdot {self.n_ed:.{n}f}",
        comparison_operator_label="=",
    )