Skip to content

formula_5_48

codes.eurocode.en_1992_1_1_2004.chapter_5_structural_analysis.formula_5_48

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

Classes:

codes.eurocode.en_1992_1_1_2004.chapter_5_structural_analysis.formula_5_48.Form5Dot48LowerCharacteristicPrestressingValue

Form5Dot48LowerCharacteristicPrestressingValue(r_inf: DIMENSIONLESS, p_m_t: KN)

Bases: Formula

Class representing formula 5.48 for the calculation of the lower characteristic value for the prestressing value at SLS and Fatigue, [\(P_{k,inf}\)].

[\(P_{k,inf}\)] Lower characteristic value for the prestressing value at SLS and Fatigue [\(kN\)].

EN 1992-1-1:2004 art.5.10.9(1) - Formula (5.48)

Parameters:

  • r_inf (DIMENSIONLESS) –

    [\(r_{inf}\)] Factor for the lower characteristic value, recommended value is 0.95 for pre-tensioning or unbounded tendons, 0.90 for post-tensioning with bonded tendons. When appropriate measures are taken: 1.0 [\(-\)].

  • p_m_t (KN) –

    [\(P_{m,t}(x)\)] Mean value of the prestressing force at location x [\(kN\)].

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_5_structural_analysis/formula_5_48.py
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
def __init__(
    self,
    r_inf: DIMENSIONLESS,
    p_m_t: KN,
) -> None:
    r"""[$P_{k,inf}$] Lower characteristic value for the prestressing value at SLS and Fatigue [$kN$].

    EN 1992-1-1:2004 art.5.10.9(1) - Formula (5.48)

    Parameters
    ----------
    r_inf : DIMENSIONLESS
        [$r_{inf}$] Factor for the lower characteristic value, recommended value is 0.95 for pre-tensioning or unbounded tendons,
         0.90 for post-tensioning with bonded tendons. When appropriate measures are taken: 1.0 [$-$].
    p_m_t : KN
        [$P_{m,t}(x)$] Mean value of the prestressing force at location x [$kN$].
    """
    super().__init__()
    self.r_inf = r_inf
    self.p_m_t = p_m_t

codes.eurocode.en_1992_1_1_2004.chapter_5_structural_analysis.formula_5_48.Form5Dot48LowerCharacteristicPrestressingValue.latex

latex(n: int = 3) -> LatexFormula

Returns LatexFormula object for formula 5.48.

Source code in blueprints/codes/eurocode/en_1992_1_1_2004/chapter_5_structural_analysis/formula_5_48.py
52
53
54
55
56
57
58
59
60
61
def latex(self, n: int = 3) -> LatexFormula:
    """Returns LatexFormula object for formula 5.48."""
    return LatexFormula(
        return_symbol=r"P_{k,inf}",
        result=f"{self:.{n}f}",
        equation=r"r_{inf} \cdot P_{m,t}(x)",
        numeric_equation=rf"{self.r_inf:.{n}f} \cdot {self.p_m_t:.{n}f}",
        comparison_operator_label="=",
        unit="kN",
    )