Skip to content

Commit

Permalink
MAINT: updated theta to thetadeg
Browse files Browse the repository at this point in the history
  • Loading branch information
saullocastro committed Jul 16, 2021
1 parent e6056c5 commit 3787cb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions composites/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,10 +156,10 @@ def laminated_plate(stack, plyt=None, laminaprop=None, rho=0., plyts=None, lamin
rhos = [rho for i in stack]

plies = []
for plyt, laminaprop, theta, rho in zip(plyts, laminaprops, stack, rhos):
for plyt, laminaprop, thetadeg, rho in zip(plyts, laminaprops, stack, rhos):
laminaprop = laminaprop
ply = Lamina()
ply.theta = float(theta)
ply.thetadeg = float(thetadeg)
ply.h = plyt
ply.matlamina = read_laminaprop(laminaprop, rho)
plies.append(ply)
Expand Down

0 comments on commit 3787cb6

Please sign in to comment.