登录
首页 » Visual C++ » jiadianji

jiadianji

于 2010-11-29 发布 文件大小:1919KB
0 273
下载积分: 1 下载次数: 13

代码说明:

   基于vc++6.0的佳点集遗传算法的编程,里面的各项参数均可由使用者自我调整!(Vc++6.0 based on the good point set genetic algorithm programming, which the parameters can be adjusted by the users themselves!)

文件列表:

fuzzy
.....\Debug
.....\.....\Fuzzy.obj,29314,2010-06-03
.....\.....\Knife_Fuzzy.exe,118873,2010-06-03
.....\.....\Knife_Fuzzy.ilk,229476,2010-06-03
.....\.....\Knife_Fuzzy.obj,25600,2010-06-02
.....\.....\Knife_Fuzzy.pch,5493172,2010-06-02
.....\.....\Knife_Fuzzy.pdb,476160,2010-06-03
.....\.....\Knife_Fuzzy.res,2776,2010-06-03
.....\.....\Knife_FuzzyDlg.obj,47928,2010-06-03
.....\.....\StdAfx.obj,105492,2010-06-02
.....\.....\vc60.idb,263168,2010-06-03
.....\.....\vc60.pdb,454656,2010-06-03
.....\Fuzzy.cpp,3576,2010-06-03
.....\Fuzzy1.h,1525,2010-06-02
.....\Knife_Fuzzy.aps,36340,2010-06-03
.....\Knife_Fuzzy.clw,1387,2010-06-03
.....\Knife_Fuzzy.cpp,2183,2010-06-02
.....\Knife_Fuzzy.dsp,4371,2010-06-02
.....\Knife_Fuzzy.dsw,528,2010-06-02
.....\Knife_Fuzzy.h,1379,2010-06-02
.....\Knife_Fuzzy.ncb,82944,2010-06-03
.....\Knife_Fuzzy.opt,50688,2010-06-03
.....\Knife_Fuzzy.plg,1029,2010-06-03
.....\Knife_Fuzzy.rc,5811,2010-06-03
.....\Knife_FuzzyDlg.cpp,7363,2010-06-03
.....\Knife_FuzzyDlg.h,1509,2010-06-02
.....\ReadMe.txt,3669,2010-06-02
.....\res

.....\...\Knife_Fuzzy.rc2,403,2010-06-02
.....\resource.h,1011,2010-06-02
.....\StdAfx.cpp,213,2010-06-02
.....\StdAfx.h,1054,2010-06-02

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

发表评论

0 个回复

  • shuzhifenxi
    分数值分析的一些ppt课件,很有用,在学习C的时候,可以用到这些博大精深的思想(Fractional value analysis ppt courseware, useful when learning C, you can use these profound thought)
    2013-05-21 16:04:39下载
    积分:1
  • wogefasuanli
    涡格法计算机翼的涡强,对不同剖面形状,拱度等进行了比较分析。并且与书籍上对比(Vortex lattice method the computer wing of the vortex is strong, the shape of different profiles, such as camber, a comparative analysis.)
    2011-07-10 20:40:16下载
    积分:1
  • zairuzhidiandandao
    用来计算航天器再入质点弹道,其中包括插值算法,龙格库塔法以及大气模型(Used to calculate the particle trajectory of spacecraft re-entry, including the interpolation algorithm, Runge-Kutta method as well as atmospheric model)
    2008-04-27 11:09:17下载
    积分:1
  • raytracer111
    电磁场与微波技术下的射线追踪技术。应用c语言编程(Electromagnetic Field and Microwave Technology under the ray tracing technique. Application c programming language)
    2013-06-02 20:32:24下载
    积分:1
  • Algorithm
    说明:  算法设计第三版,算法设计第三版,算法设计第三版,算法设计第三版(Algorithm Design Third Edition)
    2010-04-28 19:44:45下载
    积分:1
  • generation
    遗传算法反演子程序,可用于地球物理非线性反演(The genetic algorithm inversion subroutine, can be used for nonlinear geophysical inversion)
    2016-03-29 01:20:19下载
    积分:1
  • Gauss-Seidel-in-C-Program
    高斯-赛德尔迭代法是解线性方程组的常规算法,本文是C语言的高斯-赛德尔计算代码(Gauss-Seidel C program)
    2016-04-08 09:51:43下载
    积分: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
  • css
    用visual basic编译的布谷鸟算法的源代码,是一种很好地启发式智能算法。(Use visual basic compiler cuckoo algorithm source code, is a good heuristic intelligent algorithm. )
    2013-07-19 17:02:51下载
    积分:1
  • 2d
    说明:  用FORTRAN语言实现二维欧拉方程的求解,采用二阶MUSCL迎风格式()
    2007-09-10 14:30:45下载
    积分:1
  • 696516资源总数
  • 106637会员总数
  • 8今日下载