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

Search list

[Other resourceDiamond(jst)

Description: 计算机图形学的实验,关于绘制金刚石图案,魔术三角形图案 ,二维图形的变换 ,曲线的绘制 ,编码裁剪算法的程序
Platform: | Size: 94255 | Author: | Hits:

[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:

[JSP/Javajstun-0.6.1.src.tar

Description: 检测nat类型的jstun的程序,双击即可.然后可在log.txt读取信息.-detection nat jstun types of procedures, Double-click can be. log.txt may then read information.
Platform: | Size: 22528 | Author: Steven | Hits:

[Special Effectsjsteg

Description: 一个关于JPEG图形图像处理的隐写嵌入工具-A JPEG graphic image processing embedded steganography tools
Platform: | Size: 377856 | Author: jiao | Hits:

[Windows DevelopJSA-20070903-2

Description: jsa是一款小巧的js代码分析工具,也可以压缩js代码,非常实用。使用时将后缀名改为.jar-JSA is a small js code analysis tools can also be compressed js code, very useful. Will use the suffix changed the name. Jar
Platform: | Size: 793600 | Author: xiaoning | Hits:

[Graph DrawingDiamond(jst)

Description: 计算机图形学的实验,关于绘制金刚石图案,魔术三角形图案 ,二维图形的变换 ,曲线的绘制 ,编码裁剪算法的程序-Computer Graphics experiments, diamond pattern on the map, magic triangle patterns, two-dimensional graphics transform, curve drawing, clipping algorithm coding procedures
Platform: | Size: 3458048 | Author: | Hits:

[JSPswato

Description: 刚开始学习看的,感觉很不错,发布出来大家共享一下,希望对大家有所帮助。-Watch the beginning of the study, I feel very good, publish it for all to share what we hope will be helpful to everyone.
Platform: | Size: 905216 | Author: madeng | Hits:

[Crack HackEncryption

Description: This an aes encryption method its include file handling nd its jst simple nd efficient now editing will be required in this try this-This is an aes encryption method its include file handling nd its jst simple nd efficient now editing will be required in this try this
Platform: | Size: 2048 | Author: vishal | Hits:

[ELanguagejstcz

Description: 金山毒霸的注册机,没有密钥也可以运用杀毒软件了 官方版-Kingsoft' s Zhuceji, no keys can also use the official version of antivirus software
Platform: | Size: 1029120 | Author: web | Hits:

[GUI DevelopCSS_lecture_examples

Description: hello is jst to activate my account so dnt tak etnfbm-hello is is jst to activate my account so dnt tak etnfbm
Platform: | Size: 1464320 | Author: amna | Hits:

[JSP/Java8_puzzle

Description: 8数码问题的Java求解,采用A*算法。数据结构采用的Vector<int[]>。输出为"no solution"或一系列表示求解过程的字符串。 某些30步的测试样例需要半分钟左右,但是绝对是正确解~~万望您能不吝点滴时间耐心等待……orz thnx~~ 我用的启发函数计算了现在的网格距离目标网格还有多远。 具体算法是,将每一格中的数字的坐标与其应该在的坐标的差加到一起,得到这个最终值h(x) 也就是Manhattan_Distance 源码使用方法:建立Java Project后,分别建立三个同名的.java文件,将源码分别复制过去然后编译运行即可。-a source code that solves the 8 puzzle problem. it uses A-star algorithm, and a major data structure of Vector<int[]>. The output of the program would be "no solution" or a series of strings representing the moves during the solution. Well, some samples need to be proceeded for around 30 seconds, but the program per se is indeed correct and will ultimately generate the shortest solution. so if u encounter such occasion plz jst wait for a while tho~~~ thnx~!! the heuristic function, say h(x), in this source code is the sum of the Mahattan Distance of each block from its destination block. How to use: build a Java Project, and create three .java files with the same names in the .zip file accordingly, and copy the source from the .zip file and just compile and run~~! have fun thnx~!
Platform: | Size: 669696 | Author: Siegfried | Hits:

[Windows Developchildwindow

Description: jst simply creating a child window in vp
Platform: | Size: 1418240 | Author: Sivakumar | Hits:

[Browser Clienttrimpath-junction-1.1.20.tar

Description: Trimpath JavaScript 是个轻量级的,基于JavaScript的,跨浏览器,采用APL/GPL开放源代码协议的,可以让你轻松进行基于模板编程方式的纯JS引擎。 采用该引擎,可以让它来完全处理View方面的事情,服务端Module直接输出Data就可以。让你的MVC模式连成一体,而且由于View由浏览器来处 理,大大减少了服务器的负担,用来构建Ajax技术的网络信息系统应用是一个非常好的选择。下面将通过翻译该站的文章来给大家介绍这个JST引擎的使用。-Trimpath JavaScript is a lightweight, JavaScript-based, cross-browser, using APL/GPL open source protocol that allows you to easily program the template-based approach pure JS engine. With the engine, you can make it to fully handle View side of it, the server Module Data can be directly output. To facilitate the integration of your MVC pattern, and because of View by the browser to handle, thus greatly reducing the burden on the server, Ajax technology used to build the network information system is a very good option. The following translation of the site through the article to give you about the JST engine use.
Platform: | Size: 5662720 | Author: 幻之舞 | Hits:

[AI-NN-PRJST

Description: this program applying artificial intelegence with backPropagation algorithm
Platform: | Size: 130048 | Author: buddy_boyan | Hits:

[Delphi VCLDelphiDCR

Description: this is a .pas code for JST backpropagation, used to recognize handwritten
Platform: | Size: 528384 | Author: reiko | Hits:

[Other Gamesjst

Description: 剪刀石头布游戏,你输入一次,电脑输入一次,比较大小,显示输赢-jiandaoshitoubu
Platform: | Size: 844800 | Author: 周飞飞 | Hits:

[JSP/JavajspservletjavaBean

Description: jsp_servlet_javaBean实现的MVC,是音乐CD管理系统,运用的技术有运用的相关技术:jsp+javaBean+servlet+jst+el+sqlserver+jbuider+tomcat -jsp_servlet_javaBean implemented MVC, the music CD management system, the use of technologies related to the use of technology: jsp+ javaBean+ servlet+ jst+ el+ sqlserver+ jbuider+ tomcat
Platform: | Size: 487424 | Author: jiejack | Hits:

[AI-NN-PRjst

Description: neural network program
Platform: | Size: 5120 | Author: m aswin | Hits:

[matlabperceptron

Description: perceptron network (jst)
Platform: | Size: 1024 | Author: kipur | Hits:

[matlabUTS JST Delta Rule

Description: input full adder and by using delta rule algorithm
Platform: | Size: 20480 | Author: luna_ | Hits:
« 12 »

CodeBus www.codebus.net