Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
2e70179
Draft initial structure for the concrete class
mortenengen Dec 13, 2022
b8f67bb
Update docstring of base material
mortenengen Dec 13, 2022
c299dcc
minimum reinforcement areas functions
DanielGMorenaFhecor Dec 15, 2022
59a04f5
raise ValueError test functions for min area
DanielGMorenaFhecor Dec 27, 2022
b7167aa
crack_min_steel_without_direct_calculation
DanielGMorenaFhecor Jan 12, 2023
7189d31
Commit
DanielGMorenaFhecor Jan 12, 2023
4a0fcfb
crack without direct calculation tests
DanielGMorenaFhecor Jan 12, 2023
84c0140
adjusted bond strength
DanielGMorenaFhecor Jan 12, 2023
e0f1baa
hc_eff_concrete_tension formulation and testing
DanielGMorenaFhecor Jan 12, 2023
f2cbb49
requiremets.txt updated
DanielGMorenaFhecor Jan 12, 2023
333dcbe
rho_p_eff
DanielGMorenaFhecor Jan 12, 2023
59f1198
kt load duration
DanielGMorenaFhecor Jan 12, 2023
34d85d2
strain diff formula
DanielGMorenaFhecor Jan 12, 2023
a8ab129
chapter completed
DanielGMorenaFhecor Jan 13, 2023
ce4e432
imports and renamed functions
DanielGMorenaFhecor Jan 13, 2023
938c0f5
removed duplicate file
DanielGMorenaFhecor Jan 13, 2023
6ba6dc9
removed testing file
DanielGMorenaFhecor Jan 13, 2023
a9c9263
test renaming and docstring corrections
DanielGMorenaFhecor Jan 16, 2023
50c65b7
pull from upstream
DanielGMorenaFhecor Feb 8, 2023
ea3552b
Merge branch 'dev' of https://github.com/fib-international/structural…
DanielGMorenaFhecor Mar 9, 2023
4fd8b7e
230309 requested changes applied
DanielGMorenaFhecor Mar 9, 2023
1cffa61
small lint fixes
DanielGMorenaFhecor Mar 9, 2023
b483d40
vscode config updated
DanielGMorenaFhecor Mar 9, 2023
e9d953d
Merge branch 'dev' of https://github.com/fib-international/structural…
DanielGMorenaFhecor May 26, 2023
182e538
Merge branch 'dev' of https://github.com/fib-international/structural…
DanielGMorenaFhecor Dec 18, 2023
e509fb9
Merge branch 'dev' of https://github.com/fib-international/structural…
DanielGMorenaFhecor Mar 4, 2024
d57f945
Merge branch 'dev' of https://github.com/fib-international/structural…
DanielGMorenaFhecor Apr 4, 2024
bc049e4
Merge branch 'dev' of https://github.com/DanielGMorenaFhecor/structur…
DanielGMorenaFhecor Jul 30, 2024
125693f
files created
DanielGMorenaFhecor Aug 19, 2024
11ba7f8
partially completed
DanielGMorenaFhecor Aug 21, 2024
0149347
chapter to review
DanielGMorenaFhecor Aug 21, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 84 additions & 0 deletions structuralcodes/codes/ec2_2023/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,92 @@
wk_cal,
wk_cal2,
)
from ._section12_detailing_members import (
As_column_min,
As_min,
As_min_bot,
As_slab_min_bottom_reinforcement_end_supports,
As_slab_min_bottom_reinforcement_inner_supports,
As_slab_min_secondary_reinforcement,
As_slab_min_top_reinforcement_end_supports,
As_w_min,
As_wall_min_h,
As_wall_min_v,
MRd_min,
Vrd_hog_flat_slab,
Vrd_int_flat_slab,
Vrd_w_int_flat_slab,
al_with_shear_reinforcement,
al_without_shear_reinforcement,
bottom_reinforcement_extension,
check_slab_depth_for_shear_reinforcement,
check_slab_shear_stress_conditions,
min_anchorage_length_bent_up_bar,
min_di_support_and_joint,
min_slab_reinforcement_along_free_edge,
rho_w_stir_min,
rho_w_tors_min,
s_max_circular_col,
s_max_col_end,
s_max_col_int,
s_max_poly_col,
s_max_wall_h,
s_max_wall_v,
s_slab_max,
s_stir_max,
sbu_max,
sbu_max_slab,
sl_max,
sl_max_slab,
sl_surf_max,
slab_column_max_leg_shear_reinforcement_diameter,
slab_column_tangential_spacing_limit,
str_max,
str_max_slab,
)

__all__ = [
'As_column_min',
'As_min',
'As_min_bot',
'As_slab_min_bottom_reinforcement_end_supports',
'As_slab_min_bottom_reinforcement_inner_supports',
'As_slab_min_secondary_reinforcement',
'As_slab_min_top_reinforcement_end_supports',
'As_w_min',
'As_wall_min_h',
'As_wall_min_v',
'MRd_min',
'Vrd_hog_flat_slab',
'Vrd_int_flat_slab',
'Vrd_w_int_flat_slab',
'al_with_shear_reinforcement',
'al_without_shear_reinforcement',
'bottom_reinforcement_extension',
'check_slab_depth_for_shear_reinforcement',
'check_slab_shear_stress_conditions',
'min_anchorage_length_bent_up_bar',
'min_di_support_and_joint',
'min_slab_reinforcement_along_free_edge',
'rho_w_stir_min',
'rho_w_tors_min',
's_max_circular_col',
's_max_col_end',
's_max_col_int',
's_max_poly_col',
's_max_wall_h',
's_max_wall_v',
's_slab_max',
's_stir_max',
'sbu_max',
'sbu_max_slab',
'sl_max',
'sl_max_slab',
'sl_surf_max',
'slab_column_max_leg_shear_reinforcement_diameter',
'slab_column_tangential_spacing_limit',
'str_max',
'str_max_slab',
'A_phi_correction_exp',
'alpha_c_th',
'alpha_s_th',
Expand Down
Loading