Skip to content

Commit

Permalink
Changed PhysMember code to match Member code
Browse files Browse the repository at this point in the history
  • Loading branch information
JWock82 committed Feb 21, 2024
1 parent a61de8b commit 3c69dda
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion PyNite/PhysMember.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class PhysMember(Member3D):
def __init__(self, name, i_node, j_node, material, Iy, Iz, J, A, model, aux_node=None,
tension_only=False, comp_only=False, section_name=None):

super().__init__(name, i_node, j_node, material, model, Iy, Iz, J, A, aux_node, tension_only, comp_only, section_name)
super().__init__(name, i_node, j_node, material, Iy, Iz, J, A, model, aux_node, tension_only, comp_only, section_name)
self.sub_members = {}

def descritize(self):
Expand All @@ -41,6 +41,7 @@ def descritize(self):
# Step through each node in the model
for node in self.model.Nodes.values():

# Check each node in the model (except the i and j-nodes)
if node is not self.i_node and node is not self.j_node:

# Create a vector from the i-node to the current node
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ Here's a list of projects that use PyNite:
* Phaenotyp (https://github.com/bewegende-Architektur/Phaenotyp) (https://youtu.be/shloSw9HjVI)

# What's New?
v0.0.88
* Reorganized physical member code to match member code more consistently.

v0.0.87
* Fine-tuned P-$\delta$ effects. P-$\delta$ effects are now included in member internal slope and deflection calculations.

Expand Down

0 comments on commit 3c69dda

Please sign in to comment.