Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add formula 6.5 for NEN-EN 1993-1-1_c2_a1_2016 including init files a… #120

Merged
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Module containing all formulas from 1993-1-1+C2+A1:2016: Chapter 6 - Ultimate limit state."""
egarciamendez marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
"""Formula 6.5 from NEN-EN 1993-1-1+C2+A1:2016: Chapter 6 - Ultimate limit state."""
# pylint: disable=arguments-differ
from blueprints.codes.eurocode.nen_en_1993_1_1_c2_a1_2016 import NEN_EN_1993_1_1_C2_A1_2016
from blueprints.codes.formula import Formula
from blueprints.type_alias import KN


class Form6Dot5UnityCheckTensileStrength(Formula):
"""Class representing formula 6.5 for the unity check for tensile strength."""

label = "6.5"
bro-wi marked this conversation as resolved.
Show resolved Hide resolved
source_document = NEN_EN_1993_1_1_C2_A1_2016
bro-wi marked this conversation as resolved.
Show resolved Hide resolved

def __init__(
self,
n_ed: KN,
n_t_rd: KN,
) -> None:
"""[N_ed/N_t_rd] Unity check for tensile strength of an element in tension.

NEN-EN 1993-1-1+C2+A1:2016 art.6.2.3(1) - Formula (6.5)

Parameters
----------
n_ed : KN
[NEd] Design value of the normal tensile force [kN].
n_t_rd : KN
[Nt,Rd] Design value of the resistance against tenslie force [kN].
"""
super().__init__()
self.n_ed = n_ed
self.n_t_rd = n_t_rd

@staticmethod
def _evaluate(
n_ed: KN,
n_t_rd: KN,
) -> float:
egarciamendez marked this conversation as resolved.
Show resolved Hide resolved
"""Evaluates the formula, for more information see the __init__ method."""
if n_t_rd <= 0:
raise ValueError(f"Negative or zero n_t_rd: {n_t_rd}. n_t_rd cannot zero or be negative")
if n_ed < 0:
raise ValueError(f"Negative n_ed: {n_ed}. n_ed cannot be negative (that would be compression).")
egarciamendez marked this conversation as resolved.
Show resolved Hide resolved
return n_ed / n_t_rd
2 changes: 1 addition & 1 deletion docs/source/codes/eurocode/ec3_1993_1_1_2016/formulas.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Total of 108 equations present.
| 6.2 | :x: | | |
| 6.3 | :x: | | |
| 6.4 | :x: | | |
| 6.5 | :x: | | |
| 6.5 | :heavy_check_mark: | | Form6Dot5UnityCheckTensileStrength |
| 6.6 | :x: | | |
| 6.7 | :x: | | |
| 6.8 | :x: | | |
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Module containing all formulas from NEN_EN_1993_1_1_C2_A1_2016: Chapter 6 - Ultimate limit state."""
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
"""Testing formula 6.5 of NEN-EN 1993-1-1+C2+A1:2016."""
# pylint: disable=arguments-differ
import pytest

from blueprints.codes.eurocode.nen_en_1993_1_1_c2_a1_2016.chapter_6_ultimate_limit_state.formula_6_5 import Form6Dot5UnityCheckTensileStrength

# pylint: disable=arguments-differ


class TestForm6Dot5UnityCheckTensileStrength:
"""Validation for formula 6.5 from NEN-EN 1993-1-1+C2+A1:2016."""

def test_evaluation(self) -> None:
"""Test the evaluation of the result."""
# Example values
n_ed = 7 # kN
n_t_rd = 10 # kN
form = Form6Dot5UnityCheckTensileStrength(n_ed=n_ed, n_t_rd=n_t_rd)

# Expected result, manually calculated
expected = 0.7

assert form == expected
egarciamendez marked this conversation as resolved.
Show resolved Hide resolved

def test_raise_error_when_negative_n_ed_is_given(self) -> None:
"""Test a negative value for v_rd_s."""
# Example values
n_ed = -7
n_t_rd = 10

with pytest.raises(ValueError):
Form6Dot5UnityCheckTensileStrength(n_ed=n_ed, n_t_rd=n_t_rd)

def test_raise_error_when_negative_n__t_rd_is_given(self) -> None:
"""Test a negative value for v_ccd."""
# Example values
n_ed = 7
n_t_rd = -10

with pytest.raises(ValueError):
Form6Dot5UnityCheckTensileStrength(n_ed=n_ed, n_t_rd=n_t_rd)

def test_raise_error_when_zero_n_t_rd_is_given(self) -> None:
"""Test a negative value for v_td."""
# Example values
n_ed = 10
n_t_rd = 0

with pytest.raises(ValueError):
Form6Dot5UnityCheckTensileStrength(n_ed=n_ed, n_t_rd=n_t_rd)
bro-wi marked this conversation as resolved.
Show resolved Hide resolved
Loading