Skip to content

Commit

Permalink
Physical member initialization fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JWock82 committed Feb 19, 2024
1 parent e7c65a1 commit a61de8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 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, Iy, Iz, J, A, model, aux_node, tension_only, comp_only, section_name)
super().__init__(name, i_node, j_node, material, model, Iy, Iz, J, A, aux_node, tension_only, comp_only, section_name)
self.sub_members = {}

def descritize(self):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="PyNiteFEA",
version="0.0.87",
version="0.0.88",
author="D. Craig Brinck, PE, SE",
author_email="[email protected]",
description="A simple elastic 3D structural finite element library for Python.",
Expand Down

0 comments on commit a61de8b

Please sign in to comment.