欢迎来到麦多课文档分享! | 帮助中心 海量文档,免费浏览,给你所需,享你所想!
麦多课文档分享
全部分类
  • 标准规范>
  • 教学课件>
  • 考试资料>
  • 办公文档>
  • 学术论文>
  • 行业资料>
  • 易语言源码>
  • ImageVerifierCode 换一换
    首页 麦多课文档分享 > 资源分类 > PPT文档下载
    分享到微信 分享到微博 分享到QQ空间

    Introduction to computational plasma physics.ppt

    • 资源ID:376641       资源大小:1.50MB        全文页数:45页
    • 资源格式: PPT        下载积分:2000积分
    快捷下载 游客一键下载
    账号登录下载
    微信登录下载
    二维码
    微信扫一扫登录
    下载资源需要2000积分(如需开发票,请勿充值!)
    邮箱/手机:
    温馨提示:
    如需开发票,请勿充值!快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如需开发票,请勿充值!如填写123,账号就是123,密码也是123。
    支付方式: 支付宝扫码支付    微信扫码支付   
    验证码:   换一换

    加入VIP,交流精品资源
     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    Introduction to computational plasma physics.ppt

    1、Introduction to computational plasma physics,雷奕安 62755208,,课程概况,http:/ 上机 成绩评定为期末大作业,Related disciplines,Computation fluid dynamics (CFD) Applied mathematics, PDE, ODE Computational algorithms Programming language, C, Fortran Parallel programming, OpenMP, MPI Plasma physics, space, fusion, Unix, Lin

    2、ux, ,大规模数值模拟的特殊性,Contents,What is plasma Basic properties of plasma Plasma simulation challenges Simulation principles,What is plasma,Partially ionized gas, quasi-neutral Widely existed Fire, lightning, ionosphere, polar aurora Stars, solar wind, interplanetary (stellar, galactic) medium, accretion

    3、disc, nebula Lamps, neon signs, ozone generator, fusion energy, electric arc, laser-material interaction Basic properties Density, degree of ionization, temperature, conductivity, quasi-neutrality magnetization,Plasma vs gas,Basic properties,Temperature Quasi-neutrality Thermal speedPlasma frequency

    4、Plasma period,Debye length,System size and timeDebye shielding,Debye lengths,Plasma parameter,Strong couplingWeak coupling,Weakly coupled plasmas,Collision frequency,Mean-free-path Collisional plasma (Collisionless) Collisioning frequency,Magnetized plasma,Anisotropic Gyroradius Gyrofrequency Magnet

    5、ization parameterPlasma beta,Simulation challenges,Problem size: 1014 1024 particles Debye sphere size: 102 106 particles Time steps: 104 106 Point particle, computational unstable, sigularities,Solution,No details, essence of the plasma One or two dimension to reduce the size No high frequency phen

    6、omenon, increase time step length Reduce ND, mi / me Smoothing particle charge, clouds Fluidal approaches, single or double Kinetic approaches, df/f,Simple Simulation,Electrostatic 1 dimensional simulation, ES1 Self and applied electrostatic field Applied magnetic field Couple with both theory and e

    7、xperiment, and complementing them,Basic model,Basic model,Basic model,Field - force - motion - field - Field: Maxwells equations Force: Newton-Lorentz equations Discretized time and space Finite size particle Beware of nonphysical effects,Computational cycle,Equation of motion,vi, pi, trajectory Int

    8、egration method, fastest and least storage Runge-Kutta Leap-frog,Planet Problem,x0 = 1; vx0 = 0; y0 = 0; vy0 = 1 read (*,*) dt N = 30/dtdo i = 0, N+3x1 = x0 + vx0*dty1 = y0 + vy0*dtr = sqrt(x0*x0 + y0*y0)fx = -x0/r*3fy = -y0/r*3vx1 = vx0 + fx*dtvy1 = vy0 + fy*dt! if(mod(i,N/10).eq.2)write(*,*) x0, y

    9、0, -1/r+(vx0*vx0+vy0*vy0)/2x0 = x1; y0 = y1; vx0 = vx1; vy0 = vy1 enddo end,Forward differencing,Planet Problem,./a.out data 0.1 $ gnuplot Gnuplot plot “data” u 1:2,Planet Problem,./a.out data 0.01 $ gnuplot Gnuplot plot “data” u 1:2,Planet Problem,x0 = 1; vx0 = 0; y0 = 0; vy0 = 1 read (*,*) dt N =

    10、30/dtx1 = x0 + vx0*dt y1 = y0 + vy0*dt xh0 = (x0+x1)/2; yh0 = (y0+y1)/2 do i = 0, Nxh1 = xh0+vx0*dt; yh1 = yh0 + vy0*dt;r = sqrt(xh0*xh0 + yh0 *yh0 )fx = -xh1/r*3fy = -yh1/r*3vx1 = vx0 + fx*dtvy1 = vy0 + fy*dt ! if(mod(i,N/100).eq.0)write(*,*) xh0, yh0, -1/r+(vx0*vx0+vy0*vy0)/2xh0 = xh1; yh0 = yh1;

    11、vx0 = vx1; vy0 = vy1 enddo end,Leap Frog,Planet Problem,./a.out data 0.1 $ gnuplot Gnuplot plot “data” u 1:2,Planet Problem,./a.out data 0.01 $ gnuplot Gnuplot plot “data” u 1:2,Field equations,Poissons equation,Field equations,Poissons equation is solvable In periodic boundary conditions, fast Four

    12、ier transform (FFT) is used, filtering the high frequency part (smoothing), is easy to calculate,Particle and force weighting,Particle positions are continuous, but fields and charge density are not, interpolatingZero-order weightingFirst-order weighting, cloud-in-cell,Higher order weighting,Quadrat

    13、ic or cubic splines, rounds of roughness, reduces noise, more computation,Initial values,Number of particles and cells Weighting method Initial distribution and perturbation The simplest case: perturbed cold plasma, with fixed ions.Warm plasma, set velocities,Initial values,Diagnostics,Graphical sna

    14、pshots of the history x, v, r, f, E, etc. Not all ti For particle quantities, phase space, velocity space, density in velocity For grid quantities, charge density, potential, electrical field, electrostatic energy distribution in k space,Tests,Compare with theory and experiment, with answer known Ch

    15、ange nonphysical initial values (NP, NG, Dt, Dx, ) Simple test problems,Server connection,Ssh Host: 162.105.23.110, protocol: ssh2 Your username & password Vnc connection In ssh shell: “vncserver”, input vnc passwd, remember xwindow number Tightvnc: 162.105.23.110:xx (the xwindow number) Kill vncserver: “vncserver kill :xx” (x-win no.),Xes1,Xes1 document Xgrafix already compiled in /usr/local Xes1 makefile make ./xes1 -i inp/ee.inp,LIBDIRS = -L/usr/local/lib -L/usr/lib -L/usr/X11R6/lib64,Clients,Ssh putty.exe Vncviewer http:/ Pscp: http:/


    注意事项

    本文(Introduction to computational plasma physics.ppt)为本站会员(fuellot230)主动上传,麦多课文档分享仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知麦多课文档分享(点击联系客服),我们立即给予删除!




    关于我们 - 网站声明 - 网站地图 - 资源地图 - 友情链接 - 网站客服 - 联系我们

    copyright@ 2008-2019 麦多课文库(www.mydoc123.com)网站版权所有
    备案/许可证编号:苏ICP备17064731号-1 

    收起
    展开