Skip to content

Commit 468a2a3

Browse files
Merge pull request #8 from StructuralPython/releases/v0.3.1
Releases/v0.3.1
2 parents e10aa6e + 5e3a7d6 commit 468a2a3

3 files changed

Lines changed: 1 addition & 7 deletions

File tree

src/loadbearing_wall/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
The wall model is parameterizable and can represent any material
66
"""
77

8-
__version__ = "0.3.0"
8+
__version__ = "0.3.1"
99

1010
from loadbearing_wall.wall_model import LinearWallModel
1111
from loadbearing_wall import *

src/loadbearing_wall/geom_ops.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ def apply_spread_angle(
3636
print(f"Weird condition: {locals()=}")
3737

3838
projected_length = projected_x1 - projected_x0
39-
40-
print(f"{projected_length=}")
4139
ratio = original_length / projected_length
4240

4341
if None not in [w0, w1, x0, x1]:
@@ -46,7 +44,6 @@ def apply_spread_angle(
4644
elif None not in [x, p]:
4745
projected_w0 = p / projected_length
4846
projected_w1 = p / projected_length
49-
print(f"{projected_w1=}")
5047
return (
5148
round_to_close_integer(projected_w0),
5249
round_to_close_integer(projected_w1),
@@ -89,7 +86,6 @@ def apply_minimum_width(
8986

9087
projected_x1 = location + spread_width / 2
9188
projected_w0 = projected_w1 = magnitude / (projected_x1 - projected_x0)
92-
print(f"{projected_w0=}")
9389
return (
9490
round_to_close_integer(projected_w0),
9591
round_to_close_integer(projected_w1),

src/loadbearing_wall/wall_model.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,6 @@ def spread_loads(self) -> None:
190190
}
191191
)
192192
else:
193-
print(f"{dist_load=}")
194193
proj[load_dir][load_case].append(dist_load)
195194

196195
for load_dir, load_cases in self.point_loads.items():
@@ -224,7 +223,6 @@ def spread_loads(self) -> None:
224223
}
225224
)
226225
else:
227-
print(f"Min spread: {point_load=}")
228226
projected_load = geom.apply_minimum_width(
229227
point_load[p],
230228
point_load[x],

0 commit comments

Comments
 (0)