Skip to content

Commit

Permalink
fix: fixed the angle information from stress strain table. Version up…
Browse files Browse the repository at this point in the history
…date
  • Loading branch information
rafaelpsilva07 committed Sep 28, 2024
1 parent 6ad5cfa commit a9fc1d2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions composipy/core/strength.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ def calculate_strain(self):
data['ply'].append(cur_ply)
data['position'].append('top')
data['position'].append('bot')
data['angle'] = theta
data['angle'] = theta
data['angle'].append(theta)
data['angle'].append(theta)
data['epsilonx'].append(epsilontop[0]) #plate direction
data['epsilonx'].append(epsilonbot[0])
data['epsilony'].append(epsilontop[1])
Expand Down Expand Up @@ -266,8 +266,8 @@ def calculate_stress(self):
data['ply'].append(cur_ply)
data['position'].append('top')
data['position'].append('bot')
data['angle'] = theta
data['angle'] = theta
data['angle'].append(theta)
data['angle'].append(theta)
data['sigmax'].append(sigmatop[0]) #plate direction
data['sigmax'].append(sigmabot[0])
data['sigmay'].append(sigmatop[1])
Expand Down
2 changes: 1 addition & 1 deletion composipy/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.4.2'
__version__ = '1.4.3'

0 comments on commit a9fc1d2

Please sign in to comment.