From 6e7eff1e0c5800e14cb32bc96e089fd132001517 Mon Sep 17 00:00:00 2001 From: Zabamund Date: Mon, 19 Aug 2019 13:33:48 +0200 Subject: [PATCH] add lists to where statements --- wellpathpy/tan.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/wellpathpy/tan.py b/wellpathpy/tan.py index 3f70292..de8fff4 100644 --- a/wellpathpy/tan.py +++ b/wellpathpy/tan.py @@ -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 ------- @@ -128,7 +128,6 @@ def low_tan(md, inc, azi): azi : float well azimuth in degrees - Notes ----- Formulae: @@ -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 -------