openfoam多相流使用小结(一直更新)
(2012-06-11 20:59:19)
标签:
杂谈 |
分类: OPENFOAM |
1----bubblefoam,twophaseeulerfoam都可以开启自动调整时间步长功能。
2----openfoamg开检测,monitor问题。。Take
a look at the incompressible/pisoFoam/les/pitzDaily tutorial:
there you
will see how to enable probes functionality inside the controlDict
and how to set probes
position in your
domain
生成的文件可以放在ORIGION里处理
3----//表面场,phi,界面流率,存储在体之间的交接面上。表面场(surface...)不能和体积场(vol...)
//直接计算,因为他们存储在不同地方,大小不同。
//可以将体积场转化为表面场(运用fvc::interpolate())
//或者由表面场转化为体积场(运用fvc::reconstruct())进行计算。
4----多相流对应的方法
VOF model –interFoam, multiphaseInterFoamand
variants.
Eulerian modeling –bubbleFoam, twoMixingFoam,
settlingFoamand,twoPhaseEulerFoam.
5----求教(关于Openfoam 速在x,y,z三个方向上的分量问题)
如题。。OF一般只显示一个总速度。那三个分量怎么得到和显示出来???
http://apps.hi.baidu.com/share/detail/15255352
一文中有提到在
./postProcessing/velocityField:
速度场计算
Ucomponents
Writes the three scalar fields, Ux, Uy and Uz,
for each component of the velocity field U for each time
foamCalc <calcType>
<fieldName1 ... fieldNameN>
foamCalc components U
这个在user guide 的34、35页有比较详细的介绍。

加载中…