Skip to content

Commit

Permalink
Merge pull request #484 from robbievanleeuwen/feature/concrete-walls
Browse files Browse the repository at this point in the history
Add concrete wall geometries to the section library
  • Loading branch information
robbievanleeuwen authored Nov 15, 2024
2 parents eee47c9 + 600cb4f commit 7621409
Show file tree
Hide file tree
Showing 6 changed files with 2,573 additions and 53 deletions.
7 changes: 7 additions & 0 deletions docs/user_guide/geometry.rst
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,13 @@ Concrete Sections
~sectionproperties.pre.library.concrete_sections.concrete_column_section
~sectionproperties.pre.library.concrete_sections.concrete_tee_section
~sectionproperties.pre.library.concrete_sections.concrete_circular_section
~sectionproperties.pre.library.concrete_sections.rectangular_wall
~sectionproperties.pre.library.concrete_sections.cee_wall
~sectionproperties.pre.library.concrete_sections.tee_wall
~sectionproperties.pre.library.concrete_sections.single_lift_core
~sectionproperties.pre.library.concrete_sections.double_lift_core_a
~sectionproperties.pre.library.concrete_sections.double_lift_core_b
~sectionproperties.pre.library.concrete_sections.stairwell

.. _label-bridge-library:

Expand Down
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ pardiso = [
docs = [
"furo==2024.8.6",
"sphinx==8.1.3",
"notebook==7.2.2",
"ipykernel==6.29.5",
"ipython==8.29.0",
"nbsphinx==0.9.5",
Expand All @@ -83,9 +82,14 @@ lint = [
"ruff==0.7.1",
"pyright==1.1.387",
]
dev = [
"ipympl==0.9.4",
"notebook==7.2.2",
"sphinx-autobuild==2024.10.03",
]

[tool.uv]
default-groups = ["docs", "test", "lint"]
default-groups = ["docs", "test", "lint", "dev"]

[tool.pyright]
venvPath = "."
Expand Down
7 changes: 7 additions & 0 deletions src/sectionproperties/pre/library/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,17 @@
)
from sectionproperties.pre.library.concrete_sections import (
add_bar,
cee_wall,
concrete_circular_section,
concrete_column_section,
concrete_rectangular_section,
concrete_tee_section,
double_lift_core_a,
double_lift_core_b,
rectangular_wall,
single_lift_core,
stairwell,
tee_wall,
)
from sectionproperties.pre.library.nastran_sections import (
nastran_bar,
Expand Down
Loading

0 comments on commit 7621409

Please sign in to comment.