Skip to content

Commit

Permalink
fix column labels for shear and poisson ratios
Browse files Browse the repository at this point in the history
  • Loading branch information
gbarter committed May 29, 2024
1 parent 272d720 commit f327b7b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Binary file modified Documentation/IEA-15-240-RWT_tabular.xlsx
Binary file not shown.
12 changes: 6 additions & 6 deletions WISDEM/generateTables.py
Original file line number Diff line number Diff line change
Expand Up @@ -795,12 +795,12 @@ def write_materials(self):
matDF['Young Modulus E_1 [MPa]'] = 1e-6*E[:,0]
matDF['Young Modulus E_2 [MPa]'] = 1e-6*E[:,1]
matDF['Young Modulus E_3 [MPa]'] = 1e-6*E[:,2]
matDF['Shear Modulus G_1 [MPa]'] = 1e-6*G[:,0]
matDF['Shear Modulus G_2 [MPa]'] = 1e-6*G[:,1]
matDF['Shear Modulus G_3 [MPa]'] = 1e-6*G[:,2]
matDF['Poisson ratio nu_1'] = nu[:,0]
matDF['Poisson ratio nu_2'] = nu[:,1]
matDF['Poisson ratio nu_3'] = nu[:,2]
matDF['Shear Modulus G_12 [MPa]'] = 1e-6*G[:,0]
matDF['Shear Modulus G_13 [MPa]'] = 1e-6*G[:,1]
matDF['Shear Modulus G_23 [MPa]'] = 1e-6*G[:,2]
matDF['Poisson ratio nu_12'] = nu[:,0]
matDF['Poisson ratio nu_13'] = nu[:,1]
matDF['Poisson ratio nu_23'] = nu[:,2]
matDF['Tensile failure Xt_1 [MPa]'] = 1e-6*Xt[:,0]
matDF['Tensile failure Xt_2 [MPa]'] = 1e-6*Xt[:,1]
matDF['Tensile failure Xt_3 [MPa]'] = 1e-6*Xt[:,2]
Expand Down

0 comments on commit f327b7b

Please sign in to comment.