/cltsection.py Secret
Last active
June 2, 2024 20:59
Cross-sectional Analysis of CLT using section-properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
from sectionproperties.pre import Material | |
from sectionproperties.pre.library import rectangular_section | |
from sectionproperties.analysis import Section | |
timber0 = Material( | |
name="Timber0", | |
elastic_modulus=9.5e3, | |
poissons_ratio=0.35, | |
density=4.4e-7, | |
yield_strength=5.5, | |
color="burlywood", | |
) | |
timber90 = Material( | |
name="Timber90", | |
elastic_modulus=317, | |
poissons_ratio=0.35, | |
density=4.4e-7, | |
yield_strength=5.5, | |
color="orange", | |
) | |
s1 = rectangular_section(d=40, b=1000, material=timber0).shift_section(y_offset=-40) | |
s2 = rectangular_section(d=20, b=1000, material=timber90).shift_section(y_offset=-60) | |
s3 = rectangular_section(d=40, b=1000, material=timber0).shift_section(y_offset=-100) | |
geom = (s1 - s2) + (s2 - s3) + s3 | |
geom = s1 + s2 + s3 | |
#geom.plot_geometry(labels=("points", "facets")) | |
geom.create_mesh(mesh_sizes=[100, 50, 100]) | |
sec = Section(geometry=geom) | |
#sec.plot_mesh() | |
sec.calculate_geometric_properties() | |
ixx, iyy, ixy = sec.get_eic() # get second moments of area | |
print(f"Ixx = {ixx:.5e} mm4") | |
print(f"Iyy = {iyy:.5e} mm4") | |
print(f"Ixy = {ixy:.5e} mm4") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment