Skip to content

Commit

Permalink
add lists to where statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Zabamund committed Aug 19, 2019
1 parent 6a21416 commit 6e7eff1
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions wellpathpy/tan.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@ def high_tan(md, inc, azi):
where:
:math:`md_u`: upper survey station depth MD
:math:`md_l`: lower survey station depth MD
:math:`inc_l`: lower survey station inclination in degrees
:math:`azi_l`: lower survey station azimuth in degrees
- :math:`md_u`: upper survey station depth MD
- :math:`md_l`: lower survey station depth MD
- :math:`inc_l`: lower survey station inclination in degrees
- :math:`azi_l`: lower survey station azimuth in degrees
Returns
-------
Expand Down Expand Up @@ -128,7 +128,6 @@ def low_tan(md, inc, azi):
azi : float
well azimuth in degrees
Notes
-----
Formulae:
Expand All @@ -143,10 +142,11 @@ def low_tan(md, inc, azi):
tvd = \sum (md_l - md_u) \cdot cos(azi_u)
where:
:math:`md_u`: upper survey station depth MD
:math:`md_l`: lower survey station depth MD
:math:`inc_u`: upper survey station inclination in degrees
:math:`azi_u`: upper survey station azimuth in degrees
- :math:`md_u`: upper survey station depth MD
- :math:`md_l`: lower survey station depth MD
- :math:`inc_u`: upper survey station inclination in degrees
- :math:`azi_u`: upper survey station azimuth in degrees
Returns
-------
Expand Down

0 comments on commit 6e7eff1

Please sign in to comment.