如何使用python,numpy和scipy集成弧长?

时间:2017-07-07 04:54:28

标签: python numpy scipy automatic-ref-counting ellipse

在另一个thread上,我看到有人设法使用mathematica整合弧的长度。他写道:

In[1]:= ArcTan[3.05*Tan[5Pi/18]/2.23]
Out[1]= 1.02051
In[2]:= x=3.05 Cos[t];
In[3]:= y=2.23 Sin[t];
In[4]:= NIntegrate[Sqrt[D[x,t]^2+D[y,t]^2],{t,0,1.02051}]
Out[4]= 2.53143

使用numpy和scipy的导入如何将它转移到python?特别是,我在他的代码中使用“NIntegrate”功能卡在第4行。谢谢您的帮助!

另外,如果我已经有弧长和垂直轴长度,我怎样才能反转程序从已知值中吐出原始参数?谢谢!

2 个答案:

答案 0 :(得分:3)

据我所知scipy无法执行符号计算(例如符号区分)。您可能需要查看http://www.sympy.org的符号计算包。因此,在下面的示例中,我通过分析计算衍生物(Dx(t)Dy(t)函数)。

>>> from scipy.integrate import quad
>>> import numpy as np
>>> Dx = lambda t: -3.05 * np.sin(t)
>>> Dy = lambda t: 2.23 * np.cos(t)
>>> quad(lambda t: np.sqrt(Dx(t)**2 + Dy(t)**2), 0, 1.02051)
(2.531432761012828, 2.810454936566873e-14)

编辑:问题的第二部分 - 反转问题

从您知道积分(弧)的值的事实,您现在可以求解一个决定弧的参数(半轴,角度等)让我们#39 ; s假设您想要解决角度。然后,您可以使用scipy中的一个非线性求解器来还原等式quad(theta) - arcval == 0。你可以这样做:

>>> from scipy.integrate import quad
>>> from scipy.optimize import broyden1
>>> import numpy as np
>>> a = 3.05
>>> b = 2.23
>>> Dx = lambda t: -a * np.sin(t)
>>> Dy = lambda t: b * np.cos(t)
>>> arc = lambda theta: quad(lambda t: np.sqrt(Dx(t)**2 + Dy(t)**2), 0, np.arctan((a / b) * np.tan(np.deg2rad(theta))))[0]
>>> invert = lambda arcval: float(broyden1(lambda x: arc(x) - arcval, np.rad2deg(arcval / np.sqrt((a**2 + b**2) / 2.0))))

然后:

>>> arc(50)
2.531419526553662
>>> invert(arc(50))
50.000031008458365

答案 1 :(得分:0)

如果您喜欢纯数值方法,则可以使用以下准系统解决方案。鉴于我有两个输入numpy.ndarrayxy,但没有可用的函数形式,因此这对我来说很好。

import numpy as np

def arclength(x, y, a, b):
    """
    Computes the arclength of the given curve
    defined by (x0, y0), (x1, y1) ... (xn, yn)
    over the provided bounds, `a` and `b`.

    Parameters
    ----------
    x: numpy.ndarray
        The array of x values

    y: numpy.ndarray
        The array of y values corresponding to each value of x

    a: int
        The lower limit to integrate from

    b: int
        The upper limit to integrate to

    Returns
    -------
    numpy.float64
        The arclength of the curve

    """
    bounds = (x >= a) & (y <= b)

    return np.trapz(
        np.sqrt(
            1 + np.gradient(y[bounds], x[bounds])
        ) ** 2),
        x[bounds]
    )

注意:我以这种方式隔开了返回变量,只是为了使其更易读和清楚地了解正在发生的操作。

顺便说一句,回想一下曲线的弧长由下式给出:

Arc-length Equation