Skip to content

Commit

Permalink
update python script
Browse files Browse the repository at this point in the history
  • Loading branch information
jhuang2601 committed Mar 8, 2024
1 parent e3ff218 commit ab7a3a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def main():
dnlist = []
dslist = []
for i in range(0, len(zcord)):
if abs(zcord[i] / 250 - 1.) < 0.01:
if abs(zcord[i] / 12.5 - 1.) < 0.01:
depth.append(ycord[i])
tnlist.append(normalTraction[i] / 1.0e6)
tslist.append(shearTraction[i] / 1.0e6)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def main():
dnlist = []
dslist = []
for i in range(0, len(zcord)):
if abs(zcord[i] / 250 - 1.) < 0.01:
if abs(zcord[i] / 12.5 - 1.) < 0.01:
depth.append(ycord[i])
tnlist.append(normalTraction[i] / 1.0e6)
tslist.append(shearTraction[i] / 1.0e6)
Expand Down

0 comments on commit ab7a3a5

Please sign in to comment.