FDTD Python API
下载后,后缀修改去掉.ra即可执行
源代码
#!/usr/bin/env python from math import exp
from gnuplot_leon import *
imp0 = 377.0 class fdtd_leon:
# Author : Leon Email: yangli0534@gmail.com
# fdtd simulation #initialization
def __init__(self,size=400,time=0,MaxTime=1000,delay = 30, width = 10, cdtds =1.0):
self.ez = size * [0.00]
self.hy = size * [0.00]
self.ceze = size * [0.00]
self.chye = size * [0.00]
self.cezh = size * [0.00]
self.chyh = size * [0.00]
self.size = size
self.time = 0
self.MaxTime = MaxTime
self.delay = delay
self.width = width
self.cdtds = cdtds # grid initialization
def grid_init(self,loss = 0.02, loss_layer = 180, epsr = 9.0):
for mm in range(0, self.size):
if (mm < 100):
self.ceze[mm] = 1.0
self.cezh[mm] = imp0
elif (mm < loss_layer):
self.ceze[mm] = 1.0
self.cezh[mm] = imp0/epsr
else:
self.ceze[mm] = (1.0-loss)/(1.0+loss)
self.cezh[mm] = imp0/epsr//(1.0+loss)
if(mm < loss_layer):
self.chyh[mm] = 1.0
self.chye[mm] = 1.0/imp0
else:
self.chyh[mm] = (1.0-loss)/(1.0+loss)
self.chye[mm] = 1.0/imp0/(1.0+loss) # update electric field
def update_e(self):
mm =0;
for mm in range(1,self.size-1):
self.ez[mm] = self.ez[mm]*self.ceze[mm] + (self.hy[mm]-self.hy[mm-1])*self.cezh[mm] # update magnetic field
def update_h(self):
mm =0;
for mm in range(0,self.size-1):
self.hy[mm] = self.hy[mm]*self.chyh[mm] + (self.ez[mm+1]-self.ez[mm])*self.chye[mm] def ez_inc_init(self):
#self.delay = int(raw_input('Enter delay:'))
#self.width = int(raw_input('Enter width:'))
#self.cdtds = int(raw_input('Enter cdtds:'))
#print self.delay
#print self.width
#print self.cdtds
return def ez_inc(self,time,location):
#print ''.join(['ez_inc time: ',str(time),'location: ',str(location)] )
#print exp(-((time-self.delay-location/self.cdtds)/self.width)**2)
return exp(-((time-self.delay-location/self.cdtds)/self.width)**2) def abc_init(self):
return def abc(self):
self.ez[0] = self.ez[1] def tfsf_init(self):
tfsf_boundary = raw_input('Enter location of tfsf boundary:')
self.ez_inc_init()
return int(tfsf_boundary) def tfsf_update(self,tfsf_boundary):
#print self.time
#print tfsf_boundary
tfsf_boundary = int(tfsf_boundary)
if (tfsf_boundary <= 0):
print 'tfsf boundary error \n'
return
else:
self.hy[tfsf_boundary] -= self.ez_inc(self.time,0.0)*self.chye[tfsf_boundary]
self.ez[tfsf_boundary+1] += self.ez_inc(self.time+0.5,-0.5)
例子
#!/usr/bin/env python import sys
import math
import os
from gnuplot_leon import *
from fdtd_leon import *
import threading
# Author : Leon Email: yangli0534@gmail.com
# fdtd simulation , plotting with gnuplot, writting in python
# python and gnuplot software packages should be installed before running this program
# 1d fdtd with absorbing boundary and TFSF boundary
# lossy dielectric material def snashot(gp, fdtd,interval):
"""Record a frame data into the gif file Parameters
----------
gp : class gnuplot_leon
fdtd : class fdtd_leon
interval : int record one every [interval] frames
"""
if(fdtd.time % interval == 0):
gp.set_frame_start('l', 1, 'green')
cnt = 0
for elem in fdtd.ez:
gp.update_point(cnt,elem)
cnt += 1
gp.set_frame_end() def report():
"""report the rate of progress Parameters
----------
none
"""
global MaxTime
global qTime
print ''.join([str(int(1000.00*int(qTime+1)/int(MaxTime))/10.0),'% has been finished!'])
if(qTime>=MaxTime-1):
return
global timer
timer = threading.Timer(2.0,report)
timer.start() gp = gnuplot_leon()
gp.set_plot_size(0.85,0.85)
gp.set_canvas_size(600,400)
#gp.set_title('fdtd simulation by leon : gnuplot class test')
title = 'fdtd simulation by leon,yangli0534\\\\@gmail.com' gp.set_title(title)
gp.set_gif()
#gp.set_png()
gp.set_file_name('demo3.gif')
gp.set_tics_color('white')
gp.set_border_color('orange')
gp.set_grid_color('orange')
gp.set_bkgr_color('gray10')
gp.set_xlabel('length','white')
gp.set_ylabel('amplitude','white')
gp.auto_scale_enable()
gp.set_key('off','sin(x)','white') size = 400#physical distance
#ez=size * [0.00]#electric field
#hy=size * [0.00]#magnetic field
#ceze=size * [0.00]#
#cezh=size * [0.00]#
#chye=size * [0.00]#
#chyh=size * [0.00]#
#sinwave=size * [0.00]#
imp0 = 377.00
LOSS = 0.01
LOSS_LAYER = 250
qTime = 0
MaxTime = 18000
delay = 30
width = 10
cdtds =1.0
epsR = 9.0
tfsf_boundary = 0
interval = 30
#cnt = 0
#elem = 0.00000
gp.set_x_range(0,size-1) fdtd = fdtd_leon(size,0,MaxTime,delay,width,cdtds)
fdtd.grid_init(LOSS, LOSS_LAYER, epsR)
fdtd.abc_init()
tfsf_boundary = fdtd.tfsf_init()
timer = threading.Timer(1,report)
timer.start()
# do time stepping
for fdtd.time in range(0, MaxTime):
qTime = fdtd.time
fdtd.update_h()
fdtd.tfsf_update(tfsf_boundary)
fdtd.abc()
fdtd.update_e()
snashot(gp,fdtd,interval) gp.set_output_valid()
gp.close()

FDTD Python API的更多相关文章
- Appium python API 总结
Appium python api 根据testerhome的文章,再补充一些文章里面没有提及的API [TOC] [1]find element driver 的方法 注意:这几个方法只能通过sel ...
- The novaclient Python API
The novaclient Python API Usage First create a client instance with your credentials: >>> f ...
- Openstack python api 学习文档 api创建虚拟机
Openstack python api 学习文档 转载请注明http://www.cnblogs.com/juandx/p/4953191.html 因为需要学习使用api接口调用openstack ...
- BotVS开发基础—Python API
代码 import json def main(): # python API列表 https://www.botvs.com/bbs-topic/443 #状态信息 LogStatus(" ...
- 《Spark Python API 官方文档中文版》 之 pyspark.sql (一)
摘要:在Spark开发中,由于需要用Python实现,发现API与Scala的略有不同,而Python API的中文资料相对很少.每次去查英文版API的说明相对比较慢,还是中文版比较容易get到所需, ...
- 《Spark Python API 官方文档中文版》 之 pyspark.sql (二)
摘要:在Spark开发中,由于需要用Python实现,发现API与Scala的略有不同,而Python API的中文资料相对很少.每次去查英文版API的说明相对比较慢,还是中文版比较容易get到所需, ...
- HBase Python API
HBase Python API HBase通过thrift机制可以实现多语言编程,信息通过端口传递,因此Python是个不错的选择 吐槽 博主在Mac上配置HBase,奈何Zoomkeeper一直报 ...
- 二、Blender/Python API总览
原文:https://docs.blender.org/api/blender_python_api_current/info_overview.html Python in Blender Ble ...
- Appium+python自动化8-Appium Python API
Appium+python自动化8-AppiumPython API 前言: Appium Python API全集,不知道哪个大神整理的,这里贴出来分享给大家. 1.contexts conte ...
随机推荐
- 互联网产品团队中Web前端工程师的重要性
国内外各大互联网公司,都有UEx/d|UCD|CDC(Customer Research & User Experience Design Center)团队. 在很多公司会认为,合格的产品经 ...
- ASP.NET MVC进阶二
一.数据验证 数据验证的步骤 在模型类中添加与验证相关的特性标记 在客户端导入与验证相关的js文件和css文件 使用与验证相关的Html辅助方法 在服务器端判断是否通过服务器端验证 常用的验证标记 R ...
- Linux下建立Nexus私服
Linux下建立Nexus私服 要安装3个东西,然后配置私服: 1.JDK 2.Maven 3.Nexus 然后配置 1.JDK的安装 下载JDK安装包,格式为RPM格式,安装即可 安装程序 #rpm ...
- C# 分层 三层架构
Hello! 三层架构↓↓↓↓↓↓ 三层架构分为:表现层(UI(User Interface)).业务逻辑层(BLL(Business Logic Layer)).数据访问层(DAL(Data Acc ...
- virtualenv and virtualenvwrapper on Ubuntu 14.04
In this post I’ll go over my attempt to setup virtual environments for Python development. Most Pyth ...
- 初学Node(一)国际惯例HelloWorld
简介 没有用过Node,记的这些只是学习的笔记,有什么错的地方,望各位前辈指正. Node是一个服务器端Javascript解释器,依赖于Chrome v8引擎进行代码编译,事件驱动.非阻塞I/O都是 ...
- sublimetext Emmet插件(Zen coding)
1.省略div,插件会默认元素为div .container <div class="container"></div> 含糊标签名称,比如不需要指定li, ...
- anriod TabHost
package com.example.yanlei.mytk; import android.os.Bundle; import android.support.v7.app.AppCompatAc ...
- javamail 发送邮件demo
package com.suntray.test; import javax.mail.BodyPart; import javax.mail.Message; import javax.mail.M ...
- Nunit在VS2010加载不了程序集的解决办法
本机环境: Win7 64位 旗舰版 VS2010 Nunit2.6.3 故障重现步骤: 1.在启动外部应用程序中增加C:\Program Files (x86)\NUnit 2.6.3\bin\nu ...