Welcome![Sign In][Sign Up]
Location:
Search - qt v

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:

[VOIP programqtphone-0.0.16

Description: QtPhone is a cross-platform telephone emulation application designed to be used with a PC, speakers, microphone, V.92 voice modem and a standard phone line. ISDN, xDSL and VoIP will be supported. Features include Caller Identification and Voice Mail. -QtPhone is a cross-platform telephone emu IBM application designed to be used with a PC , speakers, microphone, V.92 voice modem and a standard phone line. ISDN , xDSL and VoIP will be supported. Features inc lude Caller Identification and Voice Mail.
Platform: | Size: 758784 | Author: kcn_918 | Hits:

[OtherLinux_Qt

Description: 目录 前 言 第一章 Qt的安装 第二章 Hello World 第三章 C/C++ 基础 第四章 窗口部件 第五章 对话框 第六章 主应用窗口程序 第七章 文件与目录处理 第八章 数据库编程 第九章 程序调试与异常处理 附录A:Qt3.0新特性 附录B:Qt3.0类分组列表-Table of Contents Preface Chapter I Chapter II Qt installation Hello World Chapter III C/C++ The basis of Chapter IV Chapter V dialog window parts of Chapter VI of the main application window procedure file and directory under Chapter VII Chapter VIII deal with the database provision Chapter IX-way program debugging and exception handling in Appendix A: Qt3.0 new features in Appendix B: Qt3.0 category grouping list
Platform: | Size: 929792 | Author: leidongbo | Hits:

[Video Captureqt+v4l-capture

Description: 在FC4下,能够显示usb摄像头捕获的视频,并显示系统当前时间,我自己写的,已验证通过.-In FC4, it can show the usb camera video capture and display the current time, I wrote it myself, has been verified through.
Platform: | Size: 5120 | Author: 李明 | Hits:

[VC/MFCLinuxxiaQtbcrm

Description: Qt编程入门Qt的安装 第二章 Hello World 第三章 C/C++ 基础 第四章 窗口部件 第五章 对话框 第六章 主应用窗口程序 第七章 文件与目录处理 第八章 数据库编程 第九章 程序调试与异常处理-Qt Programming Introduction to Qt installation Hello World Chapter II Chapter III C/C++ The basis of Chapter IV Chapter V dialog window parts of Chapter VI of the main application window procedure documents and directories Chapter VII Chapter VIII deal with the database provision Chapter IX-way program debugging and exception handling
Platform: | Size: 929792 | Author: nixiaohua | Hits:

[Software EngineeringQt-programming-under-Linux-Getting-Started

Description: 前 言 第一章 Qt的安装 第二章 Hello World 第三章 C/C++ 基础 第四章 窗口部件 第五章 对话框 第六章 主应用窗口程序 第七章 文件与目录处理 第八章 数据库编程 第九章 程序调试与异常处理 附录A:Qt3.0新特性 附录B:Qt3.0类分组列表 -Preface Chapter I Chapter II Qt installation Hello World Chapter III C/C++ basic window components Chapter IV Chapter V Chapter VI the main application dialog box window procedure documents and directories Chapter VII Chapter VIII deal with database programming Chapter IX program debugging and exception handling in Appendix A: Qt3.0 new features in Appendix B: Qt3.0 category grouping list
Platform: | Size: 928768 | Author: jeff | Hits:

[Com Port45666021UART_send

Description: 用硬件描述语言V语言,编写的UART串口的发送模块。-Using hardware description language V language, prepared by the sending UART serial port modules.
Platform: | Size: 2048 | Author: 火箭强 | Hits:

[Linux-Unixcapclass

Description: 一个简单的QT和V4L2结合使用的例子,非常好用。-A good example about captureing video by v4l2 with Qt.
Platform: | Size: 36864 | Author: ljmasdf1 | Hits:

[Software EngineeringVModelofSoftwareTesting

Description: testing relatyed v model
Platform: | Size: 74752 | Author: pravin | Hits:

[Windows Developqt-3.0.5-hppa-11.00.depot

Description: Qt library development v 3.0.5
Platform: | Size: 11342848 | Author: VHP | Hits:

[ARM-PowerPC-ColdFire-MIPS--ok_gui--linux

Description: 基于arm-linux-qt的嵌入式界面程序,用于测量温度、光强、电池的电压、电流,描绘出I-V曲线-Based on arm-linux-qt embedded interface program, used to measure temperature, light intensity, battery voltage, current, IV curve depicted
Platform: | Size: 831488 | Author: wendan | Hits:

[Linux-Unixlinuxqt

Description: linxu qt 编程入门, 目录 前 言 第一章 Qt的安装 第二章 Hello World 第三章 C/C++ 基础 第四章 窗口部件 第五章 对话框 第六章 主应用窗口程序 第七章 文件与目录处理 第八章 数据库编程 第九章 程序调试与异常处理 附录A:Qt3.0新特性 附录B:Qt3.0类分组列表-linxu qt introductory programming, directories, the installation of Qt Preface Chapter Chapter Chapter Hello World C/C++ based widgets Chapter IV Chapter V Chapter VI dialog box, under Chapter VII of the main application window procedure file and directory handling Chapter Database Programming Chapter program debugging and exception handling in Appendix A: Qt3.0 new features Appendix B: Qt3.0 class group list
Platform: | Size: 929792 | Author: zxy | Hits:

[Mathimatics-Numerical algorithmsProjectCode

Description: The objective is to find out the time at which the rocket reaches a speed of 1000m/s (3600km/hr). Analysis We know the following: * Initial mass of the rocket and fuel, 160000kg, or 160 metric tons. * Fuel combustion exhaust velocity relative to the rocket is assumed to be constant at 2200m/s * Fuel combustion rate is a constant 2680kg/sec2 * Gravitational acceleration is 9.8m/sec2 The following formula is used to calculate the upward velocity of the rocket while the fuel is providing thrust: V = u*loge(m0/(m0-qt))-g*t Now substituting the values in the formula we get: 1000 = 2200*log(160000 / (160000 – 9.8*t)) – 9.8*t which is too difficult to solve analytically so we use Bisection root-finding method. The source code is for a program that solves this problem with the given parameters.
Platform: | Size: 37888 | Author: slabo | Hits:

[Embeded Linuxwidgets

Description: qt经典的界面设计框架,自己的学习总结资料,一个界面框架相关的综合应用例子源码-qsplit, qcomboBox,,qlineEdit,qh(v)boxlayout,qgridlayout,qlist,qstringlist...
Platform: | Size: 1713152 | Author: povoss | Hits:

[LabView6517-2400-lakeshore

Description: 用Labview程序控制Keithley公司6517A静电计,2400仪表实现对样品I-V、Q-T、R-T等测量,用Lakeshore监控样品温度。所有程序实时显示测量数据并存储数据。-Labview program control using Keithley electrometer 6517A Company, 2400 Instrumentationin sample IV, QT, RT and other measurements, monitoring sample temperature with Lakeshore. All programs in real-time display of measured data and store data.
Platform: | Size: 566272 | Author: miaopeixian | Hits:

[Special Effectsex2

Description: QT下基于opencv3.2的HSV图像分离,通过查找V分量上ROI区域最亮值的坐标,找到H分量上对应坐标的3*3矩形平均H值,判断出该坐标所处位置的颜色分类(QT under the opencv3.2 based HSV image separation, by looking for the V component on the ROI region of the brightest value coordinates, find the corresponding 3*3 coordinates of the H components of the rectangular average H value, to determine the location of the coordinates of color classification)
Platform: | Size: 6144 | Author: qxz49111752 | Hits:

CodeBus www.codebus.net