File:Catenoid.gif
来自testwiki
跳转到导航
跳转到搜索
Catenoid.gif (800 × 600像素,文件大小:1.47 MB,MIME类型:image/gif、循环、31帧、6.2秒)
注意:由于技术限制,高分辨率GIF图像的缩略图无法进行动画处理。
本文件来自维基共享资源并可能被其他项目使用。 其文件描述页上的描述显示在下面。
摘要
描述Catenoid.gif |
English: Construction of a catenoid as the rotation of a catenary arc.
Español: Construcción de un catenoide como la rotación de un arco de catenaria.
Türkçe: Bir katenoidin zincir eğrisinin dönüşü ile yapımı. |
日期 | |
来源 | 自己的作品 |
作者 | Nicoguaro |
GIF开发 InfoField | 本GIF 位图使用Matplotlib创作。 |
源代码 InfoField | Python codeimport numpy as np
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
import matplotlib.animation as animation
from matplotlib import rcParams
# In Windows the next line should provide the full path to convert.exe
# since convert is a Windows command
rcParams['animation.convert_path'] = "C:\Program Files\ImageMagick-6.9.3-Q16\convert.exe"
rcParams['font.size'] = 12
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
plot_args = {'rstride': 3, 'cstride': 1, 'cmap':"Spectral",
'linewidth': 0.1, 'antialiased': True, 'color': 'k',
'shade': True, 'alpha': 0.5}
u = np.linspace(0, 2*np.pi, 30)
v = np.linspace(-1, 1, 30)
c = 1
x = c * np.outer(np.cosh(v/c), np.cos(u))
y = c * np.outer(np.cosh(v/c), np.sin(u))
z = np.outer(v, np.ones_like(u))
surf = ax.plot_surface(x[:, 0], y[:, 0], z[:, 0], **plot_args)
line = ax.plot(x[:, 0], y[:, 0], z[:, 0], 'k', lw=2)
ax.set_xlim(-2, 2)
ax.set_ylim(-2, 2)
ax.set_zlim(-1, 1)
plt.xlabel(r"$x$", fontsize=16)
plt.ylabel(r"$y$", fontsize=16)
ax.set_zlabel(r"$z$", fontsize=16)
def data_gen(num):
surf = ax.plot_surface(x[:, :num], y[:, :num], z[:, :num], **plot_args)
line = ax.plot(x[:, num-1], y[:, num-1], z[:, num-1], 'k', lw=2)
ax.view_init(elev=35, azim=45)
return surf, line
ani = animation.FuncAnimation(fig, data_gen, range(31), blit=False)
ani.save("Catenoid.gif", writer='imagemagick')
plt.show()
|
许可协议
我,本作品著作权人,特此采用以下许可协议发表本作品:
此文件中描述的项目
描繪內容
14 2 2016
image/gif
1,539,690 字节
6.200000000000003 秒
600 像素
800 像素
文件历史
点击某个日期/时间查看对应时刻的文件。
日期/时间 | 缩略图 | 大小 | 用户 | 备注 | |
---|---|---|---|---|---|
当前 | 2016年2月14日 (日) 18:15 | 800 × 600(1.47 MB) | wikimediacommons>Nicoguaro | User created page with UploadWizard |
文件用途
以下页面使用本文件: