[科研][软件][试验]HLAV: Hysteresis Loop Animation Viewer [滞回环动画演示软件]

分享一个小程序,用于观察滞回环动画。软件是免费的。如果你发现软件有bug或者软件使用有问题,请联系我!邮箱:jidong_cui@163.com.A small program to share with you.Hysteresis Loop Animaion Viewer.This app is free . If you have found any bug in the program or have any problem when using the program, please don’t hesitate to contact me directly. Email : jidong_cui@163.com

[软件][Tool] NGA Converter: PEER NGA Ground Motion Convertor [PEER地震波数据格式转换器]

太平洋地震工程研究中心(PEER)强震数据库格式转换器。程序可以将原本5列的地震波数据转换成任意列,并支持地震波峰值的调整、地震波时间间距的调整,方便工程和研究。程序支持转换旧数据库(NGA-West)和新数据库(NGA-West2)的地震波文件。NGA-West2 网址: http://ngawest2.berkeley.edu/。A program can be used to transform a PEER Ground Motion Database file into a user-specified format suitable for other applications to use.The program can transform the data format from 5-column to any column. The peek value and time step of the ground motion can also be adjusted . It’s easy to use.The program supports both the NGA-West and NGA-West2 Database file . The address of NGA-West2 Database : http://ngawest2.berkeley.edu/ .

[动力学][软件][Tool] MDOF_Eigen: MDOF Modal Analysis [多自由度结构模态分析]

分享一个小程序,该程序是之前我在上结构动力学课的时候编制的。程序主要用于进行剪切形框架结构(即,糖葫芦串模型)的模态分析。可以使用该程序求解动力学课本后面的习题。阵型求解使用雅克比迭代法。This program is developed by me in the Structure Dynamics class. It is for modal analysis of shear building (i.e. , flexurally rigid floor beams and slabs ) with lumped mass at each floor.You can use the program to explore eigenvalue problems on you textbook and improve your understanding on free vibration. The program use Jcaobi method for the solution of eigenvalues.

[数学][几何][分形] Mandelbrot Set & Julia Set

前两天在网上无意看到了很多关于分形的东西。感觉十分漂亮。分形体现了一种有序和无序的统一。有兴趣的可以上网搜些资料看看,还有很多专门的分形软件、网站、论坛。 最出名的分形我想就是MandelbrotSet和JuliaSet了。因为分形几何学的创始人就是IBM研究室的数学家B.B.Mandelbrot。下面简单介绍一下MandelbrotSet和JuliaSet的算法。其实算法原理还是比较简单。 MandelbrotSet由一个二次迭代方程:zn+1 = zn2 +c,z0=c所得到。也就是对所有的复平面上的点c都进行迭代,不发散的点都属于Mandelbrot集的范围。 JuliaSet由一个二次映射:zn+1 = zn2 +c 产生。c为一定值。也就是选定一个常复数,然后对所有的复平面上的点z进行迭代,不发散的点都属于Julia集的范围。 其中z和c都是复数。迭代的次数越多,图形显示就越精细,可以无限细分,同时分形还有自相似性,就是无限放大一个细小的部分,看起来和原来的部分一样。 由于分形的无限性,对图形的显示和算法都是极大的挑战。一般编程的书都会用这个例子来介绍多核计算、并行计算。哈哈。手痒了,还是编个程序来看一下效果吧。截图如下: 1、先是Mandelbrot Set(迭代次数50): (1)来个黑白调色方案(黑色的就是Mandelbrot集的范围) (2)黑白的调色方案太单调了,来看看彩色的效果如何 2、JuliaSet是什么样的呢,我们接下来看看,这次选择迭代次为500次,从下面的图也可以看到,显示的内容更加细致和漂亮。由于Julia集和选择的复常数C有关,下面选择了几个典型的例子来看看效果。。 (1)c=-0.8+0.17i (2)c=-0.7-0.38i (3)  c=0.3 哈哈,真的很漂亮,配色很重要,配色没配好,在网上随便找了几个配色方案。算法也没有仔细去考虑。很多书有专门的分形算法介绍。 小结:数学真的很美,很好玩。