Welcome![Sign In][Sign Up]
Location:
Search - arx

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:

[GIS program导线标注

Description: 用于根据经纬距标注导线点的程序.
Platform: | Size: 41221 | Author: xiongbincsu@sohu.com | Hits:

[SourceCodearx

Description: mkpoly
Platform: | Size: 161088 | Author: gswang | Hits:

[DocumentsARX.net参考文件

Description:
Platform: | Size: 4420754 | Author: tomo1982@163.com | Hits:

[Other systemsCreateAndInsertBlock

Description: ObjectARX VC 用于自定义一个块定义,并插入块参照。 CAD二次开发!
Platform: | Size: 13400 | Author: weizcw2008 | Hits:

[Menu controlMenuBarXP

Description: 使用工具条实现的菜单条。-menu bar realized by toolbar
Platform: | Size: 77824 | Author: 站长 | Hits:

[source in ebookCh4_2

Description: ARX2000/CAD二次开发,告诉你如何画圆、线和椭圆。-ARX2000/CAD secondary development, tell you how Circle, Line and the elliptical.
Platform: | Size: 16384 | Author: 彭友 | Hits:

[JSP/Javaatificial simulate stock(java)

Description: 人工模拟股市(java版)-simulated stock market (java version)
Platform: | Size: 253952 | Author: 波尔 | Hits:

[GUI DevelopPropertyListCtrl_demo

Description: 类似DELPHI属性编辑的控件源码-similar attributes control the source code editor
Platform: | Size: 46080 | Author: 临风 | Hits:

[Windows DevelopArxGroup

Description: AutoCad中关于使用vc++编程操作组对象的一个类实例。-AutoCad regarding the use of vc programmed target groups examples of a type.
Platform: | Size: 3072 | Author: 蔡浩 | Hits:

[Windows DevelopArxInp

Description: AutoCad中关于使用vc++编程操作选择集的一个类实例。-AutoCad regarding the use of vc programmed to choose a category set examples.
Platform: | Size: 2048 | Author: 蔡浩 | Hits:

[Windows DevelopArxEntity

Description: AutoCad中关于使用vc++编程创建各种实体的一个类实例。-AutoCad regarding the use of vc programming of various entities to create a category of examples.
Platform: | Size: 6144 | Author: 蔡浩 | Hits:

[Graph programMove2D

Description: ARX AutoCAD 2002二次开发-ARX AutoCAD 2002 Second Development
Platform: | Size: 26624 | Author: 杨井源 | Hits:

[Otherexam03

Description: objectARX实例-objectARX
Platform: | Size: 16384 | Author: 一直量 | Hits:

[Other20038510241061598

Description: ObjectARx实例学习-ObjectARx
Platform: | Size: 19456 | Author: 一直量 | Hits:

[ADO-ODBCArxDatabase

Description: 运用VC的ado调用网络SQL SERVER,可写入图象文件,并可读区图象文件为某一文件名的形式存储在本地机器上。-ado use VC network called SQL Server can be written into the document image, the image area can be read for a particular document in the form of documents were stored in the local machine.
Platform: | Size: 2206720 | Author: 一直量 | Hits:

[File OperateFileSlider

Description: 文件分割器的实现 1.用CFileDialog类让用户选择需要进行分割或合并的文件(根据用户选择的操作) 2.在这里我们在切分文件之后,对分割后的文件名进行一个处理,原则是文件名(不含扩展名)+pti (i为本分文件的序号)+.sld。自己定义了一种扩展名,因为如果别人切分一个exe文件,你分割以 后全部是exe文件,别人一执行,很可能会出现异常的。 3.根据用户填写的分数,计算每一份的大小,除不尽的加进最后一份。每份文件的最后写入一些附加 信息,如文件的扩展名,分数-separate document for the realization of one. With CFileDialog class allows users to choose the need for separate or combined document (user selectable operation) 2. Here we segmentation document, right after the split for a file name, the principle is that the paper (not including extensions) PTI ( i document as part of the serial number). ARX. His definition of an extension, because if someone splitting an exe file, you split after all exe file, and people, it is likely to be abnormal. 3. Users fill in the scores for each of a size, with the exception of the one into the last one. Each of the final document included some additional information, such as the file name extension, scores, etc.
Platform: | Size: 28672 | Author: 躺用 | Hits:

[Windows Developtoolmenu

Description: 用ObjectARX开发AutoCAD的一个实例,这是做出来在AutoCAD中显示工具栏的一个例子-A sample for develop AutoCAD using ObjectARX, to display tool menu in AutoCAD.
Platform: | Size: 49152 | Author: 许飞 | Hits:

[Graph DrawingAsdk_Redirection

Description: 用ObjectARX开发AutoCAD的一个小工具,用来在AutoCAD中重新定向-with ObjectARX development of a small AutoCAD tools used in AutoCAD reorientation
Platform: | Size: 44032 | Author: 许飞 | Hits:

[Graph programuserdefent

Description: 给用ObjectARX开发AutoCAD初学者的一个例子,说明如何定义自定义实体-to use AutoCAD beginners ObjectARX an example on how to define custom entities
Platform: | Size: 86016 | Author: 许飞 | Hits:
« 1 2 ... 4 5 6 7 8 910 11 12 13 14 ... 18 »

CodeBus www.codebus.net