【scipy】菲涅尔积分和羊角螺线

【scipy】菲涅尔积分和羊角螺线本文介绍了菲涅尔积分的概念 展示了如何使用 Python 的 scipy 库计算并绘制菲涅尔积分的曲线 包括实数域和复数域的结果

大家好,欢迎来到IT知识分享网。

菲涅尔积分简介

菲涅尔积分一般被写为 S ( x ) S(x) S(x) C ( x ) C(x) C(x),定义为

S ( x ) = ∫ 0 x sin ⁡ ( t 2 ) d t = ∑ n = 0 ∞ ( − 1 ) n x 4 n + 3 ( 2 n + 1 ) ! ( 4 n + 3 ) C ( x ) = ∫ 0 x cos ⁡ ( t 2 ) d t = ∑ n = 0 ∞ ( − 1 ) n x 4 n + 1 ( 2 n ) ! ( 4 n + 1 ) S(x)=\int^x_0\sin(t^2)\text dt=\sum^\infty_{n=0}(-1)^n\frac{x^{4n+3}}{(2n+1)!(4n+3)}\\ C(x)=\int^x_0\cos(t^2)\text dt=\sum^\infty_{n=0}(-1)^n\frac{x^{4n+1}}{(2n)!(4n+1)}\\ S(x)=0xsin(t2)dt=n=0(1)n(2n+1)!(4n+3)x4n+3C(x)=0xcos(t2)dt=n=0(1)n(2n)!(4n+1)x4n+1

接下来在scipy中调用fresnel,并绘制其曲线

import numpy as np from scipy.special as ss xs = np.arange(-500,500)/100 s, c = ss.fresnel(xs) plt.plot(xs, s) plt.plot(xs, c) plt.show() 

效果为

在这里插入图片描述

复数域的菲涅尔积分

scipy中的fresnel的定义域可拓展到复数域,则当其自变量为复数时,其函数图像如下

在这里插入图片描述

绘图代码为

fig = plt.figure() ax = fig.add_subplot(2,3,1,projection='3d') ax.plot_surface(xs, ys, np.real(c)) ax.set_title("real(c)") ax = fig.add_subplot(2,3,2,projection='3d') ax.plot_surface(xs, ys, np.imag(c)) ax.set_title("imag(c)") ax = fig.add_subplot(2,3,3,projection='3d') ax.plot_surface(xs, ys, np.abs(c)) ax.set_title("abs(c)") ax = fig.add_subplot(2,3,4,projection='3d') ax.plot_surface(xs, ys, np.real(s)) ax.set_title("real(s)") ax = fig.add_subplot(2,3,5,projection='3d') ax.plot_surface(xs, ys, np.imag(s)) ax.set_title("imag(s)") ax = fig.add_subplot(2,3,6,projection='3d') ax.plot_surface(xs, ys, np.abs(s)) ax.set_title("abs(s)") plt.show() 

也可以绘制其实部的为彩图,

xs, ys = np.indices([300,300])/100-1.5 s, c = ss.fresnel(xs + 1j*ys) fig = plt.figure() fig.add_subplot(1,2,1) plt.imshow(np.real(c), cmap=plt.cm.prism) plt.axis('off') fig.add_subplot(1,2,2) plt.imshow(np.real(s), cmap=plt.cm.prism) plt.axis('off') plt.show() 

出图如下

在这里插入图片描述

羊角螺线

Fresnel积分但看上去似乎平平无奇,但二者一经结合,就会出现神奇的效果,这里甚至不需额外的操作,只需将二者之间的关系一一对应起来即可

plt.scatter(np.real(s), np.real(c), marker='.') plt.show() 

可以得到一个好像翅膀的图像

在这里插入图片描述

如果将实数的菲涅尔积分的sc分量的对应关系画出,则会得到所谓的羊角螺线

在这里插入图片描述

绘图代码为

xs = np.arange(-500,500)/100 s, c = ss.fresnel(xs) plt.plot(s,c) plt.grid() plt.show() 

免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://haidsoft.com/150643.html

(0)
上一篇 2025-03-17 20:25
下一篇 2025-03-17 20:33

相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注微信