登录
首页 » Visual C++ » udf

udf

于 2017-11-09 发布 文件大小:3943KB
0 574
下载积分: 1 下载次数: 50

代码说明:

  用于fluent模拟冷凝情况的UDF,它是基于压力的变化的蒸发冷凝相变模型。(UDF for fluent simulation of condensation, which is a pressure-based, evaporative condensation phase change model.)

文件列表:

udf\2dxiaobo.c
udf\airfoil.c
udf\dy_rota_trans.c
udf\fall.c
udf\FLUENT UDF Manual.pdf
udf\flux.c
udf\order\crank-nicolson.txt
udf\order\cylinder vibrator.c
udf\order\d.c
udf\order\dong.txt
udf\order\dy_rota_trans.c
udf\order\fluent press-out.txt
udf\order\fluent pressure outlet.txt
udf\order\lung_deform.c
udf\order\myudf.c
udf\order\oil-den.c
udf\order\orders.c
udf\order\pressureoutlet.c
udf\order\QQ截图20121030174808.png
udf\order\QQ截图20121030174823.png
udf\order\QQ截图20121030175655.png
udf\order\QQ截图20121030181516.png
udf\order\QQ截图20121030181556.png
udf\order\QQ截图20121030181736.png
udf\order\QQ截图20121101142411.png
udf\order\random waves.txt
udf\order\s1020.txt
udf\order\six_dof_property.c
udf\order\some kinds wave.c
udf\order\temperature.c
udf\order\udfconfig.h
udf\order\valve.c
udf\order\vel.c
udf\order\velocity.c
udf\order\vof fraction.txt
udf\order\wave.c
udf\order\wing.c
udf\order\wing.txt
udf\order\yaoban.c
udf\order\zao bo.c
udf\order\大于 小于.txt
udf\order\大开口舱段.txt
udf\order\新建 Microsoft Word 文档.doc
udf\order\新建 文本文档.txt
udf\order\焊接.txt
udf\order\舱段示意图.txt
udf\phase.c
udf\pressure-inlet.c
udf\six_dof_property.c
udf\xiaobo.c
udf\order
udf

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

发表评论

0 个回复

  • RSS-Reader-Sample
    Rss reader for a web design
    2013-11-28 00:41:24下载
    积分:1
  • ICON
    ICON图标提取工具,可以提取exe以及dll文件程序的所有icon图标。(ICON icon extraction tool to extract the program exe and dll files for all icon icon.)
    2011-05-11 11:25:44下载
    积分:1
  • 多个运动控制卡流
    运动控制卡发展越来越讯速,不同类型的控制卡亦多种多样,使软件项目经理具备越来越灵活的方案选择。而对于软件开人员,对不同的类型卡的性能测试工作无疑也越来越麻烦,通常各类型的控制卡其驱动库函数各不一样,都需要用户自己进行整理封装多类型卡编程方式,供参考(Multi - type card programming mode for reference)
    2018-11-21 10:30:01下载
    积分:1
  • CopyrightSolution
    SSD4 copyright solution
    2010-01-24 17:50:43下载
    积分:1
  • CPAnalyze
    这是一个采集数据的客户端,调用了模拟鼠标和键盘WINDOW api(This is a collection of client data, called simulated mouse and keyboard WINDOW api)
    2017-01-16 15:04:08下载
    积分:1
  • tuxingxuanzhuan
    在单文档中画图,实现模拟同步卫星绕地球旋转,很不错的懂西哦(Paint in a single document, the realization of simulated synchronous satellites orbit the earth rotation, it is good to understand the West Oh)
    2008-05-11 02:50:57下载
    积分:1
  • SystemTree
    通过对话框构建了一个简单的xp资源管理器,演示了CTreeCtrl和CListCtrl的使用方法,很仔细的。可以帮助我们掌握这个类的使用方法(Through the dialog box to build a simple resource manager xp, CTreeCtrl and CListCtrl demonstrated the use of methods, very careful. Can help us grasp this type of use)
    2009-04-26 23:27:18下载
    积分:1
  • sobel函数用法示例
    调用sobel函数 进行边缘检测 结合了高斯平滑和微分求导 是一种经典的边缘检测算子(Calling Sobel function for edge detection)
    2017-11-21 14:01:06下载
    积分:1
  • GifCodec
    参考网上的资料写的gif编解码。 编码用gdi解析常用图片格式,然后组装成gif 解码吧gif的每一帧转换成dib gif文件格式网上有很多介绍 gif用的变长lzw压缩算法: 没弄懂原理,只知道过程。压缩取一个字符作为后缀,看看字符串是否存在。存在,用对应的编码作为前缀继续取;不存在把字符串添加到字典,前缀添加到输出流,后缀作为前缀继续取。解压取一个编码看看字典中是否存在。存在用对应的字符串的第一个字符作为后缀,看看当前字符串是否存在,不存在添加到字典中,后缀作为前缀,前缀对应的字符串添加到输出流,继续取;编码不存在,前缀对应的字符串的第一个字符作为后缀(这时当前字符串肯定不存在,字典中下一个可用编码肯定等于刚取出的编码),字符串添加到字典中,编码作为前缀,前缀对应的字符串添加到输出流,继续取。 编码流转换成字节流是按位从低到高的,window是小端模式(低字节在低地址),字节内低位在右边。 24位dib转换成8位dib时使用的八叉树算法 图片拉伸时参考的网上的双线性插值算法。 字典满了位数加一,位数是12时不加(Online reference materials written gif codec. Encoded using gdi resolve common image formats, and then assembled into a gif Each frame decode it into a gif dib There are many online gif file format introduced gif lzw with variable length compression algorithm: Did not understand the principle, only know the process. Compression takes a character as a suffix, and see if there is a string. Exist as a prefix to continue to take with the corresponding encoding there is no string to add to the dictionary, a prefix added to the output stream, the suffix as a prefix to continue to take. Take a look at extracting coding dictionary exists. Exist with the corresponding first character string as a suffix to see the current string exists, there is no add to the dictionary, the suffix as a prefix, the corresponding string to the output stream, continue to take coding does not exist, prefix corresponding first character string as a suffix (when the current string certainly does not exis)
    2015-01-17 20:22:25下载
    积分:1
  • FX2.H
    FX2.H和FX2REGS.H,cy7c68013芯片的固件程序需要include这两个头文件,应该对usb开发的有些用(FX2.H and FX2REGS.H, cy7c68013 chip firmware files need to include these two heads, there should be some development with usb)
    2007-09-21 22:45:40下载
    积分:1
  • 696524资源总数
  • 103801会员总数
  • 61今日下载