登录
首页 » Visual C++ » Particle Replacement

Particle Replacement

于 2020-11-15 发布 文件大小:83KB
0 280
下载积分: 1 下载次数: 47

代码说明:

  EDEM离散元软件中颗粒替换与填充编程模版,可以套用!(This template can be used for the particle replacement and filling in EDEM discrete element software)

文件列表:

01. Particle Replacement\particle_replacement_supporting_files\grinding_mill.stp
01. Particle Replacement\particle_replacement_supporting_files\ParticleReplacement.dll
01. Particle Replacement\particle_replacement_supporting_files\Particle_Cluster_Data.txt
01. Particle Replacement\particle_replacement_supporting_files\Particle_Replacement_prefs.txt
01. Particle Replacement\particle_replacement_supporting_files\src\ApiIds.h
01. Particle Replacement\particle_replacement_supporting_files\src\ApiTypes.h
01. Particle Replacement\particle_replacement_supporting_files\src\CCustomFactory.cpp
01. Particle Replacement\particle_replacement_supporting_files\src\CCustomFactory.h
01. Particle Replacement\particle_replacement_supporting_files\src\CCustomParticleBodyForce.cpp
01. Particle Replacement\particle_replacement_supporting_files\src\CCustomParticleBodyForce.h
01. Particle Replacement\particle_replacement_supporting_files\src\CParticleList.h
01. Particle Replacement\particle_replacement_supporting_files\src\CustomFactory.cpp
01. Particle Replacement\particle_replacement_supporting_files\src\CustomParticleBodyForce.cpp
01. Particle Replacement\particle_replacement_supporting_files\src\Helpers.h
01. Particle Replacement\particle_replacement_supporting_files\src\IApi.h
01. Particle Replacement\particle_replacement_supporting_files\src\IApiManager_1_0.h
01. Particle Replacement\particle_replacement_supporting_files\src\ICustomPropertyDataApi_1_0.h
01. Particle Replacement\particle_replacement_supporting_files\src\ICustomPropertyManagerApi_1_0.h
01. Particle Replacement\particle_replacement_supporting_files\src\IFieldApi_1_0.h
01. Particle Replacement\particle_replacement_supporting_files\src\IFieldManagerApi_1_0.h
01. Particle Replacement\particle_replacement_supporting_files\src\IGeometryManagerApi_1_0.h
01. Particle Replacement\particle_replacement_supporting_files\src\IParticleManagerApi_1_0.h
01. Particle Replacement\particle_replacement_supporting_files\src\IPluginParticleBodyForce.h
01. Particle Replacement\particle_replacement_supporting_files\src\IPluginParticleBodyForceV2_0_0.h
01. Particle Replacement\particle_replacement_supporting_files\src\IPluginParticleBodyForceV2_1_0.h
01. Particle Replacement\particle_replacement_supporting_files\src\IPluginParticleBodyForceV2_2_0.h
01. Particle Replacement\particle_replacement_supporting_files\src\IPluginParticleFactory.h
01. Particle Replacement\particle_replacement_supporting_files\src\IPluginParticleFactoryV2_0_0.h
01. Particle Replacement\particle_replacement_supporting_files\src\IPluginParticleFactoryV2_1_0.h
01. Particle Replacement\particle_replacement_supporting_files\src\ISimulationManagerApi_1_0.h
01. Particle Replacement\particle_replacement_supporting_files\src\PluginConstants.h
01. Particle Replacement\particle_replacement_supporting_files\src\PluginParticleBodyForceCore.h
01. Particle Replacement\particle_replacement_supporting_files\src\PluginParticleFactoryCore.h
01. Particle Replacement\particle_replacement_supporting_files\src
01. Particle Replacement\particle_replacement_supporting_files
01. Particle Replacement

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

发表评论

0 个回复

  • 567890-
    VB图像列表控件源代码,请大家有需要就下载吧(VB image list control source code, we need to download it)
    2013-08-04 15:05:39下载
    积分:1
  • 3.10
    一个用于GPS平差的小算法模型,包含间接平差和网平差(Small algorithm model for adjustment of GPS, including indirect adjustment and net adjustment)
    2016-04-05 10:09:37下载
    积分:1
  • SCI
    dsp 28335 gpio 模拟 spi(dsp 28335 gpio analog spi)
    2014-10-23 09:55:46下载
    积分:1
  • 09_ListCtrlDemo
    VC++ 6.0,MFC,List控件,演示列表控件的使用方法。(VC++ 6.0, MFC, List controls, demonstrates the use of the list control.)
    2013-06-05 22:24:03下载
    积分:1
  • Login
    通过一个简单的项目实例“国家游泳队训练信息系统”,展示c++的威力。该项目包括,SQL server数据库连接数据库操作等(增、删、改查),是一个很好的学习资料。亦可作为收藏。包括对对话框的一些设置问题,对话框背景等........(Through a simple project examples "national swimming team training information system" to demonstrate the power of c++. The project includes, SQL server database connections and other database operations (add, delete, change search), is a good learning materials. Also as a collection. Including some of the settings dialog box in the dialog background ........)
    2014-07-05 22:24:03下载
    积分:1
  • IEC104_Tool
    104规约调试工具,模拟104主控站,方便104规约的理解(104 Statute of the debugging tools, analog 104 master station to facilitate the understanding of the Statute of 104)
    2012-07-02 21:33:55下载
    积分:1
  • SocketCAsyncSocketCSocket
    Socket,CAsyncSocket,CSocket介绍 Socket有同步阻塞方式和异步非阻塞方式两种使用,事实上同步和异步在我们编程的生涯中可能遇到了很多,而Socket也没什么特别。虽然同步好用,不费劲,但不能满足一些应用场合,其效率也很低。 也许初涉编程的人不能理解"同步(或阻塞)"和"异步(或非阻塞)",其实简单两句话就能讲清楚,同步和异步往往都是针对一个函数来说的,"同步"就是函数直到其要执行的功能全部完成时才返回,而"异步"则是,函数仅仅做一些简单的工作,然后马上返回,而它所要实现的功能留给别的线程或者函数去完成。例如,SendMessage就是"同步"函数,它不但发送消息到消息队列,还需要等待消息被执行完才返回;相反PostMessage就是个异步函数,它只管发送一个消息,而不管这个消息是否被处理,就马上返回。(SocketCAsyncSocketCSocket)
    2009-06-20 13:10:05下载
    积分:1
  • ddos
    说明:  ddos,一个很好的DDOS工具。。。。。。(ddos a intersing software)
    2020-06-19 09:15:41下载
    积分:1
  • VCcaculater
    简单的计算器软件,采用vc6.0开发,希望对您有用。(A simple calculator software, developed using vc6.)
    2009-09-07 11:29:04下载
    积分:1
  • auto_ptz.tar
    PTZ控制源码,可以实现对云台相机的基本控制(PTZ control The basic control of cloud camera can be realized)
    2017-11-30 10:53:43下载
    积分:1
  • 696518资源总数
  • 106155会员总数
  • 8今日下载