登录
首页 » matlab » FDM

FDM

于 2020-12-18 发布 文件大小:22229KB
0 391
下载积分: 1 下载次数: 128

代码说明:

  用有限差分方法求解波动方程,画出波场快照,模拟波在地下传播!(The wave equation by finite difference method, draw the wave field snapshot, simulate wave propagation in the underground!)

文件列表:

有限差分程序
............\FDM_600.c,53800,2013-05-19
............\FDM_bodywave
............\............\Debug
............\............\.....\FDM_bodywave.pch,201936,2014-07-10
............\............\.....\vc60.idb,33792,2014-07-10
............\............\.....\vc60.pdb,36864,2014-07-10
............\............\dwtc1200,2566404,2013-05-19
............\............\dwtc1500,2566404,2013-05-19
............\............\dwtc1800,2566404,2013-05-19
............\............\dwtc2100,2566404,2013-05-19
............\............\dwtc2400,2566404,2013-05-19
............\............\dwtc2700,2566404,2013-05-19
............\............\dwtc300,2566404,2013-05-19
............\............\dwtc3000,2566404,2013-05-19
............\............\dwtc600,2566404,2013-05-19
............\............\dwtc900,2566404,2013-05-19
............\............\FDM_bodywave.c,48980,2013-05-19
............\............\FDM_bodywave.dsw,532,2014-07-10
............\............\FDM_bodywave.exe,63540,2013-05-19
............\............\FDM_bodywave.ncb,33792,2014-07-10
............\............\FDM_bodywave.o,51560,2013-05-19
............\............\FDM_INSTALL_bodywave.m,2635,2014-07-15
............\............\install,7075244,2014-07-10
............\............\rec_u200.sgy,5001840,2013-05-19
............\............\rec_w2001.sgy,5001840,2013-05-19
............\............\vp,2566404,2014-07-10
............\............\程序说明.txt,706,2013-04-25
............\FDM_Rayleighwave
............\................\display_c.m,535,2013-04-25
............\................\FDM_INSTALL_Rayleighwave.m,2636,2013-04-25
............\................\FDM_Rayleigh.c,48621,2013-04-25
............\................\程序说明.txt,829,2013-04-25

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • mcml-src
    美国汪利宏的蒙特卡洛及卷积模拟程序,可以模拟top-hat光束和高斯光束在生物组织中的传输(U.S. WANG Li-hong of the Monte Carlo and convolution simulation program can simulate the top-hat beam and Gaussian beam transport in tissue)
    2021-04-11 21:38:57下载
    积分:1
  • UDFlizi
    基于FLUENT软件的一些常用UDF实例,比较有帮助(udf example)
    2015-10-20 15:56:14下载
    积分:1
  • 基于Wegstein方法的求解方程SolveEquation_Wegstein
    基于Wegstein方法的求解方程的C++程序。(Wegstein-based method for solving equations C++ program.)
    2020-06-30 01:00:02下载
    积分:1
  • PQ decomposition method
    说明:  进行PQ分解,计算电力系统潮流的有效方法,应用广泛(PQ decomposition is an effective method for calculating power flow in power system.)
    2019-04-23 21:34:16下载
    积分:1
  • 间断有限元
    the structure of the DG-FEM is very similar to that of the finite element method (FEM), there are several fundamental differences. In particular, the mass matrix is local rather than global and thus can be inverted at very little cost, yielding a semidiscrete scheme that is explicit. Furthermore, by carefully designing the numerical flux to reflect the underlying dynamics, one has more flexibility than in the classic FEM to ensure stability for wavedominated problems. Compared with the FVM, the DG-FEM overcomes the key limitation on achieving high-order accuracy on general grids by enabling this through the local element-based basis
    2022-06-13 20:11:15下载
    积分:1
  • Euler_DG_Quadrilateral_2D
    自己写了一个二维Euler方程的间断有限元程序 上次发了一个三角形单元的程序 因为不是曲边单元 所以在圆柱后面容易形成涡 现在把程序改为曲边四边形单元了 没有涡出现 单元是8节点四边形单元 节点编号顺序是 1 5 2 6 3 7 4 8 也就是四个角点依次 是1 2 3 4 然后是边的中点编号 5 6 7 8. 时间推进采用 Runge-Kutta 方法 数值通量采用全局Lax-Friedrichs通量 仍然不能捕捉激波 因为没有做重构或者加人工粘性 等这个做出来了 再发一次。 程序没有进行优化 比如说内存的消耗没有优化 比如直边单元的边界积分仍然采 用了曲边的积分方法 增加了计算量 比如面积分、线积分都是采用的是Gauss- Legendre-Lobatto积分 积分精度会比一般的Gauss-Legendre积分精度低一阶 等 等问题。 二维的 纯属交流性质 就没有考虑这些问题 ^_^ 如果物面全部是直边 那么只要改变一个参数N 就可以获得不同的计算精度 且具 有谱精度 因为单元的节点是Gauss-Legendre-Lobatto积分点。 其实就是谱元法 (物面是曲边的情况我不清楚是不是也可以通过提高基函数的阶数 也就是增加N 来提高计算精度)(Wrote a two-dimensional Euler equations with discontinuous finite element program Last made ​ ​ a triangular element of the program, not curved edge unit is so easy to form a vortex in the cylinder behind the Program to curved edge quadrilateral element vortices appear Unit is the order of 8-node quadrilateral element node number is 15,263,748 which is the four corners of the points in turn Is 1234 and then the side of the midpoint of the number 5678. Time promote the use of Runge-Kutta method Numerical flux of the overall situation of Lax-Friedrichs, flux Still can not capture the shock wave did not do the reconstruction or artificial viscosity do it Zaifayici. The program is not optimized for example, memory consumption is not optimized such as straight-edge boundary integral of the unit is still mining Integral method to increase the amount of computation such as surface integral with a curved edge, the line integral using the Gauss- The Legendr)
    2021-01-29 12:58:40下载
    积分:1
  • achol
    用乔里斯基分解法求系数矩阵为对称正定右端为常向量的方程组(Demand coefficient matrix with the Cholesky decomposition method for symmetric positive definite the right end of the constant vector equations)
    2012-02-13 23:51:25下载
    积分:1
  • fit
    基于Levenberg-Marquardt的曲线/面拟合(C library for Levenberg-Marquardt least-squares minimization and curve fitting)
    2014-02-14 04:20:28下载
    积分:1
  • matrix_answer
    《矩阵论导教.导学.导考》。是程云鹏《矩阵论》的课后习题答案与复习题纲()
    2008-07-02 00:00:15下载
    积分:1
  • kalman
    说明:  用卡尔曼滤波方法对圆周运动进行预测的算法实现(Kalman filtering method using circular motion algorithm to predict)
    2009-08-11 10:17:15下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载