We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1a4390f + d672e82 commit c41e34bCopy full SHA for c41e34b
1 file changed
src/loadbearing_wall/wall_model.py
@@ -118,9 +118,9 @@ def add_point_load(
118
"""
119
assert 0.0 <= location <= self.length
120
121
- self.distributed_loads.setdefault(dir, {})
122
- self.distributed_loads[dir].setdefault(case, [])
123
- self.distributed_loads[dir][case].append(
+ self.point_loads.setdefault(dir, {})
+ self.point_loads[dir].setdefault(case, [])
+ self.point_loads[dir][case].append(
124
{
125
self.magnitude_start_key: magnitude,
126
self.location_start_key: location,
0 commit comments