Skip to content

Commit

Permalink
begin format rad_curve for docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Zabamund committed Aug 19, 2019
1 parent 1d4daa2 commit 026bda8
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions wellpathpy/rad_curv.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,15 @@ def radius_curvature(md, inc, azi):
this method will yield unreliable results when data are closely spaced or when the borehole is straight but deviated.
Formula:
Formulae:
.. math::
northing = \sum (md_l - md_u)
\cdot cos(inc_u) - cos(inc_l)
\cdot \\frac{sin(azi_l) - sin(azi_u)}{(inc_l - inc_u)}
\cdot (azi_l - azi_u)
:math:`northing = sum((md_l - md_u) * cos(inc_u) - cos(inc_l) * sin(azi_l) - sin(azi_u) / (inc_l - inc_u) * (azi_l - azi_u))`
:math:`easting = sum((md_l - md_u) * cos(inc_u) - cos(inc_l) * cos(azi_u) - cos(azi_l) / (inc_l - inc_u) * (azi_l - azi_u))`
:math:`tvd = sum((md_l - md_u) * sin(inc_l) - sin(inc_u) / (inc_l - inc_u))`
Expand Down

0 comments on commit 026bda8

Please sign in to comment.