Welcome![Sign In][Sign Up]
Location:
Search - h.3

Search list

[AlgorithmMAIN 3-DIMENSIONAL CFD-PROGRAM

Description:

 

#//u(i,j)        x方向的速度u;或者θ方向速度
#//u(i,j)        y方向的速度v;或者径向速度ur'h\K
#//pc(i,j)       压力修正 p'[OS
#//p(i,j)        压力p-=5-+
#//p(i,j)        密度ρBk
#//p(i,j)        扩散系数γQ"G48E
#//t(i,j)        温度Tn7/bKr
#//ake(i,j)        湍流脉动能量k971E
#//dis(i,j)      动能的耗散率ε4
 
//amut(i,j)     湍动扩散系数+
//gen(i,j)      湍流能量的生成率S
//f(i,jnf)     不同的φ变量M
//lsolve(nf)   1,求解变量f(i,j,nf)  8
//lprint(nf)   1,打印变量f(i,j,nf)   ~f
//lblk(nf)     1,对变量f(i,j,nf)应用块修正b5|{@U
//mode         选择坐标系的变量. 目前只支持mode=1.
mode=1 直角坐标系(x~y)BMI
mode=2 圆柱坐标系(r~z)^pg>)
mode=3 极坐标(r~θ)   Z^r[LE
solve子程序中求解变量f(i,j,nf)的重复扫描次数 b
变量fi,j,nf)的字符性标题 |L;
 
//xl    计算区域在x方向上的宽度)?
//yl    计算区域在y方向上的宽度@ob
//l1     x方向上主控制体的网格数。也是x方向上压力节点位置的最后一个i值。
//m1   y方向上主控制体的网格数。也是y方向上压力节点位置的最后一个j值。
//dt           时间步长 △t
//第三部分网格设定的变量
//x(i)        节点位置的x
//xu(i)       主控制容积在x方向的界面位置,即速度u(i,j)所在位置
//xdif(i)     差值 x(i)-x(i-1)
 //xcv(i)      主控制容积在x方向上的宽度
//xcvs(i)     速度u(i,j)的控制容积在x方向上的宽度
//y(j)        节点位置的y
//yv(j)       主控制容积在y方向的界面位置,即速度v(i,j)所在位置
//ydif(j)     差值 y(j)-x(j-1)
//ycv(j)      主控制容积在y方向上的宽度
//ycvs(j)     速度v(i,j)的控制容积在y方向上的宽度
////r(i,j)      主网络节点的半径r
////rmn(j)      在速度v(i,j)所在处的半径r之值
////sx (j)      主网格节点位置y(j)x方向上的标尺因子
//sxmn(j)     在界面位置yv(j)x方向的尺度因子
       //上面四个变量应用于非直角坐标系的情况
//xcvi(i,j)   xcv(i) 中与u(i,j)的控制容积相覆盖的部分
//xcvi(i,j)   xcv(i) 中与u(i+1,j)的控制容积相覆盖的部分
//ycvr(j)     主控制容积垂直于x方向的面的面积
//ycvrs(j)    速度v(i,j)的控制容积垂直于x方向的面的面积
//arx(j)      x方向相垂直的控制容积的面积
//arxj(j)     arx(j)中与速度v(i,j)的控制容积相覆盖的部分
//arxjp(j)    arx(j)中与速度v(i,j+1)的控制容积相覆盖的部分
//arxjarjxp实际上对应于x方向上的ycviycvip
 
//第四部分差分方程系数设定的变量
//con(i,j)    离散方程中的常数项b,在子程序gamsor中又作为存储sc的单元
//aip(i,j)    系数ae
//aim(i,j)    系数aw
//ajp(i,j)    系数an
//ajm(i,j)    系数as
//ap(i,j)     系数ap,在在子程序gamsor中又作为存储sp的单元
//flow         穿过控制容积界面的质量流率
//diff         扩散传导性 D
//acof         DIFLOW子程序计算的量,它给出了对流与扩散作用的联合影响
 
//第五部分求解差分方程过程中的变量求解
//du(i,j)     影响u(i,j)de
//dv(i,j)     影响v(i,j)dn
//pv(j)       用于计算主网络节点i,j上的质量流率的ρvr的插值因子:计算式如下: //fvp(j)      说明同上
//fx(i)       用于计算主控制容积界面(即速度u(i,j)所在处)的密度
 
//            rhom的插值因子,计算式如下:
 
//fxm(i)      说明同上
//pt(i)pt(j) tdma中的转换系数(消元过程中)l
//qt(i)qt(j) tdma中的转换系数(消元过程中)
//第六部分 index变量
int nf;               //nf           标明不同φ变量的下标值
int nfmax;         //nfmax        设有存储单元的nf的最大值
int np;              //(nfmax)      p(i,j)实际为f(i,j,nfmax)
int nrho;           //(nfmax+1)    rho(i,j)实际为f(i,j,nfmax)
int ngam;         //(nfmax+2)    gam(i,j)实际为f(i,j,nfmax+2)n
int l2;              //l2           (l1-1)
int l3;              //l3           (l1-2)
int m2;           //m2           (m1-1)
int m3;           //m3           (m1-2) 2
int ist;                    //ist          i的第一个内节点值`
int jst;                    //jst          j的第一个内节点值
int iter;                   //iter         不稳态问题的步进计数
int last;                   //last         用户所规定的最大迭代计数
int iter1;             //iter1        一个时间点求解setup2( )的迭代次数
double time;              //time         不稳态问题中的时间t
int ipref;              //ipref        压力参考结点的i
int jpref;                //jpref        压力参考结点的j=/
 
//第七部分其它变量
double rhocon;           //rhocon       密度为常数的问题中的ρ
int lstop;                 //lstop        =1时,停止计算
double  smax;            //smax         p'方程中的质源的最大值

double  ssum;            //ssum         p'方程中的质源的代数和


Platform: | Size: 11439 | Author: tanglincn | Hits:

[Special EffectsH264中的整数DCT变换编码及量化代码

Description: H264中的整数DCT变换编码及量化代码,并附有原文的DCT编码、量化的说明文档。本源码从X264及JM中抽取后整理得来,并用原文档中的示例数据进行了测试,与原文档结果完全一样,是学习H.264不可多得的参考资源.
Platform: | Size: 64581 | Author: renxj@tom.com | Hits:

[VOIP programH.264编码算法的完整源代码

Description: H.264编码算法的完整源代码 文件:VideoEncoderX264.h class CVideoEncoderX264 : { public: CVideoEncoderX264(void); ~CVideoEncoderX264(void); virtual bool Connect(CVideoEnDecodeNotify* pNotify, const CVideoEnDecodeItem& Item); virtual void Release(void); virtual void Encode(BYTE* pInData, int nLen, BYTE* pOutBuf, int& nOutLen, int& nKeyFrame); private: x264_picture_t m_Pic; x264_t *h; x264_param_t param; void Flush(void);
Platform: | Size: 30720 | Author: lixh2009 | Hits:

[Othercanf18xx8.h

Description: 、 先在microchip网站上找到00738.zip,这个包中有 can18xx8.h,can18xx8.c,将其复制到一个你要编写程度的子目录中,例如C:\testcan下,这个时候这个东东是不能直接用的。 2、 下载一个MPLAB 7.10,直接安装(要求直接下载) 3、 再下载一个PICC18 (HI-TECH的),要正版哦(支持正版,买不起的想其它办法吧) 4、在你的头文件上写上如下的样式: #include "stdio.h" #include "can18xx8.h" #include "pic18fxx8.h"//可能是“pic.h”不太好包含,因此常会报错,直接包含克服之 5、然后设置好PICC和MPLAB,如果MPLAB上没有PICC18,则到PICC的网上下一个安装软件,可以直接运行安装就有了。 6、按照工程的基本要求把你的源代码、添加上两个库(不加也可以) 然后就可以写如下代码了:下面是一个完整版,可以直接使用microchip的库函数,本程序只是仿真调试过,未在多个芯片通信过,仍在制作中。 #include "stdio.h" #include "can18xx8.h" #include "pic18fxx8.h" unsigned long NewMessage; BYTE NewMessageData[8]; BYTE MessageData[8]; BYTE NewMessageLen; enum CAN_RX_MSG_FLAGS NewMessageFlags=1; BYTE RxFilterMatch; void main() { //int a; //int b; CANInitialize(1, 5, 7, 6, 2, CAN_CONFIG_VALID_XTD_MSG); while(1) { // Application specific logic here // Check for CAN message if ( CANIsRxReady() ) { CANReceiveMessage(&NewMessage,NewMessageData,&NewMessageLen,&NewMessageFlags); if ( NewMessageFlags & CAN_RX_OVERFLOW ) { // Rx overflow occurred; handle it } if ( NewMessageFlags & CAN_RX_INVALID_MSG ) { // Invalid message received; handle it } if ( NewMessageFlags & CAN_RX_XTD_FRAME ) { // Extended Identifier received; handle it } else { // Standard Identifier received. } if ( NewMessageFlags & CAN_RX_RTR_FRAME ) { // RTR frame received } else { // Regular frame received. } // Extract receiver filter match, if it is to be used RxFilterMatch = NewMessageFlags & CAN_RX_FILTER_BITS; } // Process received message // Transmit a message due to previously received message or // due to application logic itself. if ( CANIsTxReady() ) { MessageData[0] = 0x01; CANSendMessage( 0x02,MessageData,1,CAN_TX_PRIORITY_0 &CAN_TX_STD_FRAME & CAN_TX_NO_RTR_FRAME); } // Other application specific logic } // Do this forever // End of program } 以上均是参考文档并进行了修正,由于中间总是报错,为了大家让CAN更容易,谢谢大家!
Platform: | Size: 10682 | Author: lovelzs2008@126.com | Hits:

[VOIP programVIS H.323 Library ActiveX version 2.3 正式版

Description: VIS H.323 Library ActiveX version 2.3 正式版-VIS ActiveX version H.323 Library version 2.3
Platform: | Size: 1607680 | Author: 温小斌 | Hits:

[Compress-Decompress algrithmstmn-3.2.0

Description: H.263+编解码程序-H.263 codec procedures
Platform: | Size: 143360 | Author: 王正国 | Hits:

[GUI DevelopSkin++-Bcg64-Source

Description: 在(VC7)"项目->属性->链接器->输入->附加依赖项"中加入SkinPlusPlusDLL.lib 或 在(VC6)"Project->Settings->Link->Object/library"中加入SkinPlusPlusDLL.lib 2.在你的程序中包含头文件 #inlcude "SkinPlusPlus.h" 3.在程序中加入初始化语句InitInstance() InitializeSkin(_T("XPCorona.ssk")) 注:以上假定SkinPlusPlusDLL.lib,SkinPlusPlus.h,XPCorona.ssk都在当前目录,如果不是请更改路径设置。 二.卸载Skin++ 在程序的卸载函数中加入ExitInstance() ExitSkin() 三.更换皮肤 执行函数LoadSkin即可以实现动态换肤 LoadSkin(_T("XPCorona.ssk")) 四.函数说明 InitializeSkin是SKin++的初始化函数,您可以采用如下参数加载Skin++ InitializeSkin(皮肤文件名) 注:如果皮肤文件名中没有路径则采用当前目录。 LoadSkin(皮肤文件名) 注:如果皮肤文件名中没有路径则采用当前目录。 五.使用分隔条窗体的应注意的问题 您必须SKINPLUSPLUS_SPLITTER()和SKINPLUSPLUS_INIT_SPLITTER(m_wndSplitter)宏 注:SKINPLUSPLUS_INIT_SPLITTER一般传入分隔条对象m_wndSplitter-(VC7) "- gt; Attribute- gt; Linker- gt; Input-gt; Additional items on the "add SkinPlus DLL.lib or (VC6)" Project-gt; Settings- gt; Link-gt; Object/library "SkinPlusPlusDLL.lib into two. in your program contains header files# inlcude "SkinPlusPlus.h" 3. the procedures include initialization statement InitInstance () InitializeSkin (found ( "XPCorona.ssk")) Note : The above assumptions SkinPlusPlusDLL.lib. SkinPlusPlus.h, XPCorona.ssk are in the current directory, if not please change routing. 2. Skin unloading procedures in the uninstall function join ExitInstance () ExitSkin () 3. The implementation of the replacement skin that can function LoadSkin dynamic Eurocargo LoadSkin (found ( "XPCorona.ssk")) 4. Note InitializeSkin functi
Platform: | Size: 368640 | Author: 王杰 | Hits:

[Internet-Networkcallgen323-0[1].1.3.1.tar

Description: performance analysis in H.323 environments. Open H.323 Call Generator是一个OpenH323 (www.openh323.org)子项目,用于H.323环境中的测试和性能分析。-performance analysis in H.323 environments. Open H.323 Call Generator is a OpenH323 (www.openh323.org) programs, H.323 environment for the testing and performance analysis.
Platform: | Size: 10240 | Author: 了不起 | Hits:

[VOIP programITU-T-H.323

Description: RADVISION H.323 V4中提供的ITU H.323建议. 中文资料,用word打开时选择只读.-provided by the ITU H.323 recommendations. Chinese data, word opened with read-only options.
Platform: | Size: 119808 | Author: Nick | Hits:

[VOIP programOpen-h.323协议中文版

Description: Open H323的中文资料文档,对使用Open H323的朋友有所帮助。-the Chinese data files, the use of Open H323 friends help.
Platform: | Size: 805888 | Author: Nick | Hits:

[Internet-Networktmndec-3.2.0

Description: H.263标准协议的解码算法的源程序,适用于搞机器人远程监控或多媒体视频传输的用户。 -H.263 standard protocol decoding algorithm source code applies to engage in robot remote monitoring or multimedia video transmission users.
Platform: | Size: 84992 | Author: 刘伟 | Hits:

[Internet-Networktmn-3.2.0

Description: H.263标准协议的编码算法的源程序,适用于搞机器人远程监控或多媒体视频传输的用户。 -H.263 standard protocols of the source coding algorithm, applicable to engage in robot remote monitoring or multimedia video transmission users.
Platform: | Size: 112640 | Author: 刘伟 | Hits:

[matlabHTK-3.3

Description: Hidden Markov Toolkit (HTK) 3.2.1 HTK is a toolkit for use in research into automatic speech recognition and has been developed by the Speech Vision Robotics Group at the Cambridge University Engineering Department (http://svr-www.eng.cam.ac.uk) and Entropic Ltd (http://www.entropic.com).-Hidden Markov Toolkit (HTK) 3.2.1 HTK is a t OOLKIT for use in research into automatic speec h recognition and has been developed by the Spee ch Vision Robotics Group at the Cambridge Korea adequate Engineering Department (http :// SVR- www.eng.cam.ac.uk) and Entropic Ltd. (h Miller :// www.entropic.com).
Platform: | Size: 2229248 | Author: mesu | Hits:

[Internet-Networkgnugk-2.2.3-2

Description: H.323网守实现,采用C++编写,具扩展性-H.323 Gatekeeper achieved, using C++, with scalability
Platform: | Size: 902144 | Author: 伍修宇 | Hits:

[Communicationopengk_1.3.3

Description: 一个使用H.323的网守程序,适合大家学习研究使用.-a use H.323 Gatekeeper procedures for the use of everyone to study.
Platform: | Size: 28672 | Author: 郭聆听 | Hits:

[Communicationrp-pppoe-3.4.tar

Description: 0. Install the rp-pppoe-software -------------------------------- You should have already done this by the time you re reading this. If not, go back and read README. 1. Set up your Ethernet hardware -------------------------------- First, make sure the Ethernet card you intend to use with the modem is visible to the Linux kernel. Just how to do this is beyond the scope of this document. However, if the card is the only Ethernet card in the system, executing: ifconfig eth0 should display something like this: eth0 Link encap:Ethernet HWaddr 00:60:67:62:31:D4 plust some more lines. Your HWaddr will be different. As long as you see the HWaddr line, your card should be working. DO NOT assign an IP address to the Ethernet card. DO NOT configure the card to come up at boot time.-0. Install the rp- PPPOE-software-------------------------------- You should have al ready done this by the time you re reading this. I f not, go back and read README. 1. Set up your Ethernet h ardware-------------------------------- F irst, make sure the Ethernet card you intend to use wit h the modem is visible to the Linux kernel. Just h ow to do this is beyond the scope of this document . However, if the card is the only Ethernet card in the Syste m, executing : ifconfig eth0 should display something like th is : eth0 Link encap : Ethernet HWaddr 00:60:67:62 : 31 : D4 plust some more lines. Your HWaddr will be dif peptide. As long as you see the HWaddr line, your card should be working. DO NOT assign an IP a http://www.hotmail.com/ to the Ethernet card. DO NOT configure th e card t
Platform: | Size: 187392 | Author: chensi | Hits:

[Streaming Mpeg4tmndec-3.2.0

Description: H.263标准协议的编、解码(里面分别有编码和解码程序)算法的源程序,适用于搞机器人远程监控或多媒体视频传输 -H.263 standard agreement encoder and decoder (which were coding and decoding procedures) algorithm source, applicable to engage in tele-robotics control or multimedia video transmission
Platform: | Size: 198656 | Author: 孟攀峰 | Hits:

[GUI DevelopSkin++3.0

Description: skin++3.0啊,找了很久的-skin++ 3.0 ah, looking for a long time
Platform: | Size: 438272 | Author: franket | Hits:

[Windows DevelopT-REC-H[1].263-200501-I!!PDF-C

Description: H.363低比特率通信的视频编码标准,中文版的,对视频压缩研究有帮助-Low bit rate H.363 video coding standard communication, the Chinese version of video compression research help
Platform: | Size: 3864576 | Author: zhangjing | Hits:

[Otherglut-3.7.6

Description: gult.h 在VC6.0或者更高版本中可以进行OPGL得编程-gult.h in VC6.0 or later can be programmed to OPGL
Platform: | Size: 104448 | Author: 韩帅 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net