File:Love wave.svg

页面内容不支持其他语言。
這個文件來自維基共享資源
维基百科,自由的百科全书

原始文件(SVG文件,尺寸为1,154 × 744像素,文件大小:132 KB)


摘要

描述
English: Depiction of the propagation of a Love wave. The particles vibrate perpendicularly to the direction of propagation and the amplitude decays with depth.
Español: Esquema de la propagación de una onda de Love. Las partículas vibran perpendicularmente a la dirección de propagación y la amplitud decae con la profundidad.
日期
来源 自己的作品
作者 Nicoguaro
其他版本 此文件衍生的作品:  Love wave in Chinese.png
SVG开发
InfoField
 
SVG的源代码为有效代码
 
矢量图使用Inkscape创作。

Creation

This file was created in FreeCAD using a Python script, the arrows were added in Inkscape

from __future__ import division
import FreeCAD as FC
import Part
import numpy as np

nx = 30
ny = 6
nz = 6
side = 1
doc = FC.newDocument("love_cubes")
cube_list = []
for row in range(nx):
    for col in range(ny):
        for lay in range(nz):
            dx = row*side
            dz = lay*side
            if row <= 2*nx/3:
                dy = col*side - 2*np.sin(np.pi/5*dx)*(np.exp(dz/(side*nz)) - 1)
            else:
                dy = col*side
            cube = Part.makeBox(side, side, side)
            cube.translate(FC.Vector(dx, dy, dz))
            cube_list.append(cube)
            cubes = Part.makeCompound(cube_list)  
Part.show(cubes)


许可协议

我,本作品著作权人,特此采用以下许可协议发表本作品:
w:zh:知识共享
署名
本文件采用知识共享署名 4.0 国际许可协议授权。
您可以自由地:
  • 共享 – 复制、发行并传播本作品
  • 修改 – 改编作品
惟须遵守下列条件:
  • 署名 – 您必须对作品进行署名,提供授权条款的链接,并说明是否对原始内容进行了更改。您可以用任何合理的方式来署名,但不得以任何方式表明许可人认可您或您的使用。

说明

添加一行文字以描述该文件所表现的内容

此文件中描述的项目

描繪內容

文件历史

点击某个日期/时间查看对应时刻的文件。

日期/时间缩⁠略⁠图大小用户备注
当前2016年6月24日 (五) 16:472016年6月24日 (五) 16:47版本的缩略图1,154 × 744(132 KB)NicoguaroUser created page with UploadWizard

没有页面链接到本图像。

全域文件用途

以下其他wiki使用此文件:

元数据