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

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-Unixqt-yuv

Description: Qt实现视频采集.其中把yuv格式转换成了RGB,方便Qt处理。-Qt video collection. Yuv format which has become the RGB, to facilitate handling Qt.
Platform: | Size: 146432 | Author: songzi | Hits:

[OpenGL program3d

Description: 一个使用QT编写的三维函数图形程序,输入z=f(x,y)的表达式即可画出函数图像,使用openGL编程-The preparation of a three-dimensional function using the QT graphics program, type z = f (x, y) function, the expression can draw images, use the openGL programming
Platform: | Size: 784384 | Author: chenweitao | Hits:

[Linux-Unixcurve

Description: 用Qt写得曲线显示控件和使用的小例子,使用简单只需按顺序给定X轴和Y轴的数值-Written with the Qt controls and use of the curve shows a small example, just by using a simple sequence of a given X and Y axis values
Platform: | Size: 2247680 | Author: 李增杰 | Hits:

[AlgorithmSEG-Y-Load-And-Save

Description: sgy读取/存储程序,用于切割地震记录,Qt界面编写。-sgy file read/save procedures for cutting the seismic records,write in Qt .
Platform: | Size: 3575808 | Author: 李志勇 | Hits:

[Software EngineeringDaubechies-y-Haar

Description: proyecto en qt que realiza la tranasformada Haar y daubechies
Platform: | Size: 291840 | Author: flyingsnake2000 | 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:

[Internet-NetworkQtPwireless_tools.tar

Description: Qt,wireless_tools,将wireless_tools中的iwlist功能整合到Qt工程中,点击scan按钮,可以检测到空间中的WIFI接入点,并显示出它们的相关信息。登录窗口的用户名和密码都是:y-The Qt, the wireless_tools,, iwlist will wireless_tools to integrated into the Qt project, click on the scan button, WIFI access point can be detected in space, and display information about them. Login window user name and password are: y
Platform: | Size: 70656 | 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:

[Screen saver13)

Description: 解决libVLC双击无法全屏的问题 解决libVLC双击无法全屏的问题-void MainInterface::setVideoFullScreen( bool fs ) { b_videoFullScreen = fs if( fs ) { int numscreen = var_InheritInteger( p_intf, qt-fullscreen-screennumber ) if user hasn t defined screennumber, or screennumber that is bigger * than current number of screens, take screennumber where current interface * is if( numscreen ==-1 || numscreen > QApplication::desktop()->numScreens() ) numscreen = QApplication::desktop()->screenNumber( p_intf->p_sys->p_mi ) QRect screenres = QApplication::desktop()->screenGeometry( numscreen ) To be sure window is on proper-screen in xinerama if( !screenres.contains( pos() ) ) { msg_Dbg( p_intf, Moving video to correct screen ) move( QPoint( screenres.x(), screenres.y() ) ) } if( playlistWidget != NULL && playlistWidget->artContainer->current
Platform: | Size: 1024 | Author: 姓名 | Hits:

[Other DatabasesQTshujuku]

Description: 非常简单的QT与数据库连接小程序,适合初学者-中文(简体)英语日语 翻译文字或网页 非常简单的QT与数据库连接小程序,适合初学者 请键入文字或网站地址,或者上传文档。 取消 Fēicháng jiǎndān de QT yǔ shùjùkù liánjiē xiǎo chéngxù, shìhé chū xuézhěQT and very simple connection small program for beginners
Platform: | Size: 679936 | Author: liuping | Hits:

[Other电商系统

Description: 门户是一个单独的程序,程序要求至少支持以下功能: 一、登陆界面通过选择(管理员/用户)和帐号密码验证登陆到不同界面 1、通过登陆界面点击注册进入注册页面 1) 注册&登录:支持新用户注册平台账号,已注册用户用平台账号登录平台。(要求已注册用户的信息长久保留。) 1)注册时用户名和密码至少6位,至多不超过18位(密码二次验证) 2)登陆平台浏览平台产品信息 1)可以模糊搜索和精确搜索产品 2)可以分类查看产品 3)优惠活动:支持对同一品类下所有产品打折的活动;支持单笔订单满X减Y的活动;支持单笔订单满88包邮活动,邮费默认10元 4)购买产品:支持用户添加产品到购物车,查看实际应付的产品价格,提交订单。 1)提交订单:必须有收货人姓名。手机号码(13位数字,输入验错)、地址(省、市、县(省市县通过系统提供选择实现)、详细地址) 2)提交订单时,可以修改商品的购买件数或者删除商品 3)可以选择优惠活动,优惠活动可以叠加或者不选(1) To submit an order: the name of the consignee must be included. Mobile phone number (13 digits, input error checking), address (provincial, municipal, county through the system to provide selection), detailed address 2) When submitting an order, you may modify the number of items purchased or delete the items. 3) Preferential activities can be selected, and preferential activities can be superimposed or not selected.)
Platform: | Size: 10509312 | Author: LileiHMM | Hits:

CodeBus www.codebus.net