- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Finite Difference Approximations.ppt
Partial Differential Equations in Geophysics Numerical methods: properties Other numerical methods What is a finite difference? What is a finite difference? The big question: Taylor Series Taylor Series Taylor Series Alternative Derivation Alternative Derivation 2nd order weights Taylor Operators Interpolation and difference weights Higher order operators Higher order operators Linear system High-order interpolation First derivative Our first FD algorithm (ac1d.m) ! Problems: Stability Problems: Dispersion Our first FD code! Snapshot Example Seismogram Dispersion Finite Differences - Summary Dispersion: The numerical approximation has artificial dispersion, in other words, the wave speed becomes frequency dependent (Derivation in the board). You have to find a frequency bandwidth where this effect is small. The solution is to use a sufficient number of grid points per wavelength. True velocity % Time stepping for i=1:nt, % FD disp(sprintf( Time step : %i,i)); for j=2:nx-1 d2p(j)=(p(j+1)-2*p(j)+p(j-1))/dx^2; % space derivative end pnew=2*p-pold+d2p*dt^2; % time extrapolation pnew(nx/2)=pnew(nx/2)+src(i)*dt^2; % add source term pold=p; % time levels p=pnew; p(1)=0; % set boundaries pressure free p(nx)=0; % Display plot(x,p,b-) title( FD ) drawnow end Conceptually the most simple of the numerical methods and can be learned quite quickly Depending on the physical problem FD methods are conditionally stable (relation between time and space increment) FD methods have difficulties concerning the accurate implementation of boundary conditions (e.g. free surfaces, absorbing boundaries) FD methods are usually explicit and therefore very easy to implement and efficient on parallel computers FD methods work best on regular, rectangular grids * Computational Seismology Finite Differences Introduction Computational Seismology Introduction Computational Seismology Introduction Computat
您可能关注的文档
- Chromatography.ppt
- Class #14.ppt
- CLASSROOM PROCEDURES.ppt
- Closure Properties of Regular Languages.ppt
- Colors and moods.ppt
- Compiler Sensitivity Study.ppt
- Computational Genomics.ppt
- Concept of Reliability and Validity.ppt
- Concepts of Evolution.ppt
- Cost of Capital.ppt
- Firmware for USB 2.0.ppt
- First-Order Circuits Cont'd.ppt
- FOOD ADDITIVES.ppt
- FT870介绍.ppt
- Fubini定理.ppt
- Full Gamut Color Matching for Tiled Display Walls.ppt
- Gao Hua Yang 2010.12.16.ppt
- Gender and Development.ppt
- General Computer Science for EngineersCISC 106Lecture 07.ppt
- Gestion des données - BASE.ppt
最近下载
- 7.1《短歌行》课件(共56张PPT)2024-2025学年统编版高中语文必修上册.pptx VIP
- 《GB/T 18281.7-2024医疗保健产品灭菌 生物指示物 第7部分:选择、使用和结果判断指南》.pdf
- 微科安装使用说明书调皮%时间.pdf VIP
- HG_T 5171-2017 粒状中微量元素肥料.docx
- 检验检测机构管理评审参考.doc VIP
- 自由体位分娩理论考核试题及答案.docx VIP
- PyQt5入门教程实用知识库分享20240314102955.pdf VIP
- JJF 2182-2024 农灌机井取水量计量监测方法.pdf VIP
- 企业一站式数据开发与治理平台解决方案(35页).pptx VIP
- 新能源汽车检测与维修技术专业人才培养方案.docx VIP
文档评论(0)