Skip to content

Commit

Permalink
Fix conversion to feet but in method
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnymaserati committed Jul 7, 2024
1 parent 34b4fd5 commit 8b81cbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion welleng/survey.py
Original file line number Diff line number Diff line change
Expand Up @@ -1380,7 +1380,7 @@ def tortuosity_index(survey, rtol=0.01, dls_tol=None, data=False, **kwargs):
np.array([0.0]),
(
(n_sections_arr / (n_sections_arr + 1))
* (kappa / (survey.md[1:] - survey.md[0] / coeff))
* (kappa / ((survey.md[1:] - survey.md[0]) / coeff))
* a
)
))
Expand Down

0 comments on commit 8b81cbc

Please sign in to comment.