Welcome![Sign In][Sign Up]
Location:
Search - QT K

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:

[Linux-UnixKTV

Description: QT KTV 源码,QT designer-QT KTV CODES
Platform: | Size: 16276480 | Author: 张长春 | Hits:

[Finance-Stock software systemtcstock_resource

Description: 使用Qt开发的跨平台股票软件,提供一个高互动性的K线显示界面。 -Cross-platform development using Qt software stocks, the use of Qt s GraphicsView function, providing a highly interactive K-line display.
Platform: | Size: 428032 | Author: caoxin | Hits:

[2D GraphicQt

Description: 时钟可以调用系统时间的时钟,用QT编的 求给过哈哈谢谢 -One can call the system time clock一个可以调用系统时间的时钟,用QT编的 求给过哈哈谢谢 请键入文字或网站地址,或者上传文档。 取消 Yīgè kěyǐ diàoyòng xìtǒng shíjiān de shízhōng, yòng QT biān de qiú gěiguò hāhā xièxiè “”的用法示例:由 Google 自动翻译英语中文(简体)日语Alpha One can call the system time clock, compiled with QT seeking to Haha Thank you
Platform: | Size: 818176 | Author: 张明 | Hits:

[Video Capturefour-k-download-

Description: 描述 4K下载是一个免费的,开源和跨平台的视频和音频下载器使用C + +,升压和Qt编写的。或是Vimeo,YouTube上,脸谱,优酷,优酷和其他视频共享服务支持。 特点 • 下载视频从YouTube和其他视频共享服务 • 视频质量高达4K分辨率 • FLV,MP4,MKV支持 • 提取音频为MP3格式 • 最快的下载速度 • 智能模式快速下载 • 下载YouTube播放-Description 4k Download is a free, open source and cross-platform video and audio downloaders written with C++, boost and Qt. YouTube, Vimeo, Facebook, Dailymotion, Metacafe and other video-sharing services supported. Features • Download video from YouTube and other video-sharing services • Video quality up to 4k resolution • FLV, MP4, MKV support • Extract audio to mp3 format • Fastest download speed • Smart Mode for fast downloads • Download YouTube playlists
Platform: | Size: 2764800 | Author: 刘升 | Hits:

[assembly languageDz1

Description: 8*8大小的点阵汉字显示,汉字可更改为其他。-8*8Diǎn zhèn hànzì xiǎnshì hànzì kě gēnggǎi wéi qítā.
Platform: | Size: 1024 | Author: 李彬 | Hits:

[OtherClassifacation

Description: qt程序,k均值系统聚类分析,模式识别第二章作业-qt program, k-means clustering analysis, pattern recognition chapter jobs
Platform: | Size: 59392 | Author: gangwhu | Hits:

[GDI-BitmapStockSystem12.23.2

Description: 基于QT的日K线图形界面绘制,其中包含链接SQL数据库,并利用里面的数据绘图-QT-based graphical interface K line drawing, which contains links to SQL databases and use the data inside the drawing
Platform: | Size: 1451008 | Author: 谭日成 | Hits:

[Linux driveratk-1.9.1.tar

Description: Achievo ATK是一个面向对象的PHP开发框架。它让开发人员只需关注应用逻辑,而不是编写HTML代码。ATK提供了一个完整的框架,只要10行代码就能开发出一个可用的应用程序,而其它该框架将自动为生成,并完全可自己定制。ATK 常被喻为Ruby on Rails 。 -Dà zhǎn ATK shì yīgè miànxiàng duìxiàng de PHP kāifā kuàngjià. Tā ràng kāifā rényuán zhǐ xū guānzhù yìngyòng luójí, ér bùshì biānxiě HTML dàimǎ.ATK tígōngle yīgè wánzhěng de kuàngjià, zhǐyào 10 xíng dàimǎ jiù néng kāifā chū yīgè kěyòng de yìngyòng chéngxù, ér qítā gāi kuàngjià jiāng zìdòng wéi shēngchéng, bìng wánquán kě zìjǐ dìngzhì.ATK cháng bèi yù wèi Ruby on Rails de.
Platform: | Size: 483328 | Author: jianganbao | Hits:

[OpenCVHarrisCorner

Description: 对输入的一张彩色图像,自己写代码实现Harris Corner 检测算法: 1. 不能直接调用OpenCV 里面与Harris 角点检测相关的一些函数; 2. 只能用C/C++,不能用其他语言; 3. GUI 只能用自带的HighGUI,不能用QT 或其他的; 4. 平台可以用Windows, Linux, MacOS; 5. 显示中间的处理结果及最终的检测结果,包括最大特征值图,最小特征值图,R 图(可以考虑彩色 展示),原图上叠加检测结果等,并将这些中间结果都输出成图像文件; 6. 命令格式: “xxx.exe 图片文件 k 参数(=0.04) Aperture_size(=3)”。-The input of a color image, write your own code to achieve Harris Corner Detection Algorithm: 1. Can not be called directly inside OpenCV some functions associated with the Harris corner detection 2. To only use C/C++, can not be used in other languages 3. GUI only with their own HighGUI, can not use QT or other 4. The platform can be used Windows, Linux, MacOS 5. Display intermediate and final results of the test results, including the largest eigenvalues diagram, the minimum feature value graph , R chart (you can consider color display), picture superimposed on the test results, etc., and these intermediate results are output as an image file 6. Command Format: " xxx.exe picture file k parameters (= 0.04) Aperture_size (= 3 ). "
Platform: | Size: 504832 | Author: qian | Hits:

CodeBus www.codebus.net