Skip to content

Commit

Permalink
Merge pull request #186 from jonnymaserati/bug/tortuosity_index
Browse files Browse the repository at this point in the history
Bug/tortuosity index
  • Loading branch information
jonnymaserati authored Jul 7, 2024
2 parents 34b4fd5 + 300b445 commit 001d679
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion welleng/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.8.4'
__version__ = '0.8.5'

0 comments on commit 001d679

Please sign in to comment.