Skip to content

Commit

Permalink
Update elastic_database.py
Browse files Browse the repository at this point in the history
fix error in lizardite
  • Loading branch information
marcoalopez committed Feb 1, 2024
1 parent f46bfe0 commit 551d67c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/elastic_database.py
Original file line number Diff line number Diff line change
Expand Up @@ -1375,7 +1375,7 @@ def lizardite(P=1e-5):
C13 = np.polyval(coeffs['C13'], P) # R-squared=0.9998
C14 = np.polyval(coeffs['C14'], P) # R-squared=0.6951
C44 = np.polyval(coeffs['C44'], P) # R-squared=0.9924
C66 = np.polyval(coeffs['C44'], P) # R-squared=0.9989
C66 = np.polyval(coeffs['C66'], P) # R-squared=0.9989

# elastic dependent terms
C22, C55, C23, C24, C56 = C11, C44, C13, -C14, C14
Expand Down

0 comments on commit 551d67c

Please sign in to comment.