Skip to content

Commit a21db24

Browse files
authored
Merge pull request #208 from IEAWindTask37/shear_column_labels
fix column labels for shear and poisson ratios
2 parents 272d720 + f327b7b commit a21db24

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
-3 Bytes
Binary file not shown.

WISDEM/generateTables.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -795,12 +795,12 @@ def write_materials(self):
795795
matDF['Young Modulus E_1 [MPa]'] = 1e-6*E[:,0]
796796
matDF['Young Modulus E_2 [MPa]'] = 1e-6*E[:,1]
797797
matDF['Young Modulus E_3 [MPa]'] = 1e-6*E[:,2]
798-
matDF['Shear Modulus G_1 [MPa]'] = 1e-6*G[:,0]
799-
matDF['Shear Modulus G_2 [MPa]'] = 1e-6*G[:,1]
800-
matDF['Shear Modulus G_3 [MPa]'] = 1e-6*G[:,2]
801-
matDF['Poisson ratio nu_1'] = nu[:,0]
802-
matDF['Poisson ratio nu_2'] = nu[:,1]
803-
matDF['Poisson ratio nu_3'] = nu[:,2]
798+
matDF['Shear Modulus G_12 [MPa]'] = 1e-6*G[:,0]
799+
matDF['Shear Modulus G_13 [MPa]'] = 1e-6*G[:,1]
800+
matDF['Shear Modulus G_23 [MPa]'] = 1e-6*G[:,2]
801+
matDF['Poisson ratio nu_12'] = nu[:,0]
802+
matDF['Poisson ratio nu_13'] = nu[:,1]
803+
matDF['Poisson ratio nu_23'] = nu[:,2]
804804
matDF['Tensile failure Xt_1 [MPa]'] = 1e-6*Xt[:,0]
805805
matDF['Tensile failure Xt_2 [MPa]'] = 1e-6*Xt[:,1]
806806
matDF['Tensile failure Xt_3 [MPa]'] = 1e-6*Xt[:,2]

0 commit comments

Comments
 (0)