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 026bda8 commit 034345d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wellpathpy/rad_curv.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ def radius_curvature(md, inc, azi):
.. 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)
\cdot \\frac{sin(azi_l) - sin(azi_u)}{(inc_l - inc_u) \cdot (azi_l - azi_u)}
northing = np.cumsum((md_lower - md_upper) * (np.cos(incl_upper) - np.cos(incl_lower)) * (np.sin(azi_lower) - np.sin(azi_upper)) / (delta_inc * delta_azi))
: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 034345d

Please sign in to comment.